- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在 lolipop 之前的 android 版本中,以下代码有效并且图像位于按钮前面。但是在 android 5 中,imageview 被放在按钮后面。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/button"
android:layout_width="210sp"
android:layout_height="210sp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/round_button"
android:drawablePadding="10dip"
android:gravity="center_vertical|center_horizontal" />
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:contentDescription="@string/torch"
android:src="?attr/imageview" />
</RelativeLayout>
最佳答案
问题出现在 Android 5.0 的 elevation
属性上。显然,RelativeLayout
Z 轴顺序与 elevation
相关联。如果两个小部件具有相同的 elevation
,则 RelativeLayout
将确定 Z 轴顺序——您可以看到,如果您将布局切换为 例如,按钮
小部件。但是,如果一个小部件 (Button
) 有一个 elevation
,而另一个小部件 (ImageView
) 没有,则 elevation
将优先。
您可以通过 android:stateListAnimator="@null"
或 defining your own custom animator 移除 Button
elevation
.或者,您可以向 ImageView
添加一些 elevation
,使其在 Z 轴上高于 Button
。
关于android - 如何在 Android 5 中将 ImageView 放在 Button 前面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27216080/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!