0

我有一个布局,它从包含到另一个布局开始,然后是一个带有两个按钮的 LinearLayout。

问题是我在添加包含后看不到带有两个按钮的布局。但是当我用另一个布局包装包含时,我确实看到了包含下方的两个按钮,问题就解决了。

有人可以告诉我为什么我必须包装包含吗?

<?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_heightin keypad_layoutrootmatch_parent在包含中是如此覆盖它

于 2012-11-21T09:53:15.627 回答