gpt4 book ai didi

java - Android - 仅在版本 5.0+ 中覆盖 RelativeLayout 中的 TextView 的按钮

转载 作者:太空狗 更新时间:2023-10-29 16:32:22 26 4
gpt4 key购买 nike

我需要实现的目标:2 行文本和中间的 1 条直线应该始终位于 Button 之上。所以在这种情况下,据我所知,在 Button 的属性中设置文本是不适用的。因此,我使用 TextViewView 对齐在 Button 之上来实现它。

问题 我遇到的 Android 5.0+ 的一个奇怪的 UI 外观是当启用 Button 时,它覆盖了 TextViewView 甚至它在 RelativeLayout xml 文件中出现在 TextView 之前。 (据我所知,这意味着 TextView 应该位于 Button 之上)以下是我的 xml 代码:

<RelativeLayout
android:id="@+id/rl_daily_check_in_button_container"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_marginBottom="4dp"
android:layout_centerHorizontal="true"
android:layout_above="@+id/textview_check_in_days_in_row">

<Button
android:id="@+id/button_daily_check_in"
android:layout_width="140dp"
android:layout_height="140dp"
android:background="@drawable/daily_checkin_button" />

<TextView
android:id="@+id/textview_check_in"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_above="@+id/view_line"
android:layout_marginBottom="4dp"
android:text="@string/title_not_yet_daily_check_in"
android:textColor="@color/text_gray"
android:textStyle="bold"
android:textSize="36sp" />

<View
android:id="@+id/view_line"
android:layout_width="94dp"
android:layout_height="1dp"
android:layout_centerHorizontal="true"
android:layout_above="@+id/textview_check_in_points"
android:layout_marginBottom="6dp"
android:background="@color/text_gray" />

<TextView
android:id="@+id/textview_check_in_points"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="32dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="@string/points_can_get_daily_check_in_placeholder"
android:textColor="@color/text_gray"
android:textSize="14sp" />
</RelativeLayout>

但是当应用程序在 Android 5.0-,比如 4.4.2 中时,UI 正是我所期望的。我试图设置 android:elevation="xxdp" 属性,它成功了,直到我以编程方式设置了 Button 的背景。任何人都可以解释原因以及 Andoird 5.0+ 是如何呈现其 UI 的吗?非常感谢!

按钮 在 Andoird 5.0+ 上:

enter image description here

Android 5.0 上的

按钮:

enter image description here

最佳答案

从 Android Lollipop (5.0) 开始,Button 有一个默认值 StateListAnimator .它已将默认的 android:elevationandroid:translationZ 属性设置为 Button。由于 Button 设置了默认高度,因此它会出现在其他未设置高度的 View 上方(准确地说,高度低于按钮的 View )。即,具有较高海拔设置的 View 将显示在具有较低海拔设置的 View 上方。

这就是为什么当您将 Button 更改为 ImageView 时,问题就解决了,因为 ImageView 没有默认的 elevation 设置。

关于java - Android - 仅在版本 5.0+ 中覆盖 RelativeLayout 中的 TextView 的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35595237/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com