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 がボタンの上に表示されることを期待しています。しかし、何らかの理由でボタンが自動的に前面に移動し、テキストビューを覆い隠します。ボタンを共通ビューに変更すると、順序は正しいです。

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 に答える