<?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自动进入前端,掩盖了textview。当我将Button更改为普通视图时,顺序是正确的。
Android中有没有关于按钮的东西? 感谢
编辑:
预览:
答案 0 :(得分: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>