我有一个更大屏幕的模拟器,一切运作良好。 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>
答案 0 :(得分:1)
你永远不应该为ListView设置android:layout_width和android:layout_height到wrap_content。