奇怪的事情发生在我身上。我有这个布局:
<?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中的按钮有什么我缺少的吗?谢谢
编辑:
预习: