2

メインにこのXMlがあります...

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingTop="4px" >

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



    <ListView
        android:id="@+id/wordList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/search"
        android:layout_centerHorizontal="true" >

    </ListView>

</RelativeLayout>

そして私の問題は、私の ListView が下に android:id="@+id/search" 表示されないことです...だから私は何が間違っていますか?

4

2 に答える 2

2

使用する

android:layout_below="@id/search"

+必要ありません。

于 2012-06-02T20:37:16.607 に答える
0

別の仮定: 含まれているレイアウトに height="match_parent" が含まれている可能性があるため、ListView にはスペースが残っていません...

于 2012-06-02T21:00:04.983 に答える