RelativeLayout的Last child不显示在其他child之上

时间:2018-09-08 09:25:37

标签: android overlapping

这就是我要实现的目标。

enter image description here

实际结果:

enter image description here

我的XML如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >
    <Button
        android:id="@+id/question_button"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_centerInParent="true"
        android:textColor="@android:color/black"
        android:background="@drawable/oval_button"
        android:textSize="16sp"
        android:gravity="center"
        android:layout_marginTop="10dp"/>
    <TextView
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:text="X"
        android:gravity="center"
        android:textColor="@android:color/white"
        android:background="@drawable/oval_grid_wrong"
        android:layout_alignParentRight="true"/>
</RelativeLayout>

如何将X TextView带到最前面?

1 个答案:

答案 0 :(得分:2)

尝试删除XML中的按钮默认高度

<Button
...
android:stateListAnimator="@null" 
....
/>