0

別のレイアウトへのインクルードで始まるレイアウトがあり、その直後に2つのボタンがあるLinearLayoutがあります。

問題は、インクルードを追加した後、2つのボタンのあるレイアウトが表示されないことです。しかし、インクルードを別のレイアウトでラップすると、インクルードの下に2つのボタンが表示され、問題は解決します。

インクルードをラップする必要がある理由を誰かに教えてもらえますか?

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

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

        <include
            android:id="@+id/keypad_layout"
            layout="@layout/keypad_layout" />
    </LinearLayout>


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

        <Button
            android:id="@+id/buttonAudio"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/button_audio_selector" />

        <Button
            android:id="@+id/buttonVideo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/button_video_selector" />
    </LinearLayout>

</LinearLayout>
4

1 に答える 1

1

これを試して

<include
            android:layout_height="wrap_content"
            android:id="@+id/keypad_layout"
            layout="@layout/keypad_layout" />

おそらく、layout_heightルートkeypad_layoutmatch_parentはインクルードでオーバーライドします

于 2012-11-21T09:53:15.627 に答える