0

我有一个屏幕更大的模拟器,一切正常。ListView显示一切正常,所以它不在java代码中。我现在尝试在 3.2 屏幕上对其进行测试,ListView但没有显示任何内容。我尝试使用较小的屏幕(3.2)模拟器,它也没有显示任何内容,所以我想这与他们的布局有关。

我的 listview.xml 布局:

<?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" >

    <ListView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="150dp" >

    </ListView>

</LinearLayout>

行xml文件:

  <?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" >

    <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/text1"
        android:layout_width="match_parent"        
        android:gravity="center"
        android:layout_height="30dp" />

</LinearLayout>
4

1 回答 1

1

永远不要将 android:layout_width 和 android:layout_height 设置为 ListView 的 wrap_content。

于 2013-01-31T17:06:56.537 回答