Marshmallow RelativeLayout 与 alignBaseline 的行为很奇怪

Posted

技术标签:

【中文标题】Marshmallow RelativeLayout 与 alignBaseline 的行为很奇怪【英文标题】:Marshmallow RelativeLayout behaves strange with alignBaseline 【发布时间】:2016-01-04 15:05:00 【问题描述】:

android 6.0 Marshmallow 上,EditText 相对于具有属性 baseline 和 layout_alignBaseline 的 RelativeLayout 中的 ImageView 的定位不再起作用。甚至可以在 Android Studio 的布局编辑器中观察到这种行为。在真正的 Android Marshmallow 设备或模拟器上,在我的情况下,EditText 移动到屏幕外并且不可见。我是否错过了一些更改,这是一个错误吗?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_ android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivityFragment">

<ImageView
    android:layout_
    android:layout_
    android:id="@+id/imageView"
    android:src="@drawable/icon_category_geography_raster"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:baselineAlignBottom="true"
    android:background="#00ffff"
     />

<EditText
    android:layout_
    android:layout_
    android:id="@+id/editText"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@id/imageView"
    android:background="#ff0000"
    android:inputType="text"
    android:hint="Hint"
    android:layout_alignBaseline="@id/imageView" />

我已经创建了 Android Studio 布局编辑器的屏幕截图。这两个截图之间的区别仅仅是 API 级别的变化。

我创建了一个示例项目 https://github.com/mikegr/baseline

【问题讨论】:

这确实感觉像是一个错误。我可以从您的示例应用程序中重现您的发现。根据 Hierarchy View(在 WVGA800 大小的模拟器屏幕上,mBottom = -193,mTop = -230),您的 EditText(或 AppCompatEditText)最终具有负垂直位置。 有人向 Google 报告此问题吗? Carlton Whitehead 在此处报告了该错误:code.google.com/p/android/issues/detail?id=190839 【参考方案1】:

这是https://code.google.com/p/android/issues/detail?id=73697&thanks=73697上报告的错误

从 API11 开始,您可以简单地使用 android:baselineAlignBottom="true"

在 API11 以下,您可以覆盖 getBaseLine()

更新到Android Support Library 23.2.1,这可能会解决您的问题。

【讨论】:

以上是关于Marshmallow RelativeLayout 与 alignBaseline 的行为很奇怪的主要内容,如果未能解决你的问题,请参考以下文章

marshmallow: 简化Python对象系列化

python marshmallow库

HUST 1372 marshmallow

使用 Marshmallow 模式过滤 sqlalchemy 表更新

Android 6.0 (MarshMallow) 上的 HttpURLConnnection 请求失败

如何以编程方式打开 Android 6.0 (Marshmallow) 上特定应用的权限屏幕?