3

奇怪的事情发生在我身上。我有这个布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/gray_dark" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:drawableTop="@drawable/some_drawable"
    android:text="Some text" />
</RelativeLayout>

我希望 TextView 在按钮上方可见。但由于某种原因,按钮自动转到前面,掩盖了文本视图。当我将 Button 更改为 common View 时,顺序是正确的。

Android中的按钮有什么我缺少的吗?谢谢

编辑:

预习:

在此处输入图像描述

4

1 回答 1

3

我只是尝试了同样的事情,奇怪的是,它也发生在我身上。我这样修

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true">

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#FF0000"
            android:text="lalala"/>

    </LinearLayout>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="#FFFF00"
        android:text="lalala"/>

</RelativeLayout>
于 2015-05-22T13:36:55.540 回答