私に何か奇妙なことが起こっています。私はこのレイアウトを持っています:
<?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 がボタンの上に表示されることを期待しています。しかし、何らかの理由でボタンが自動的に前面に移動し、テキストビューを覆い隠します。ボタンを共通ビューに変更すると、順序は正しいです。
Android のボタンについて欠けているものはありますか? ありがとう
編集:
プレビュー: