我正在尝试使用列表视图作为项目的列表视图,内部列表视图(列表视图项目)中只有第一行可见。
我的列表视图项 xml 是:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/main_bg" >
<ListView
android:id="@+id/numbers_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:cacheColorHint="@null"
android:divider="@null" >
</ListView>
</RelativeLayout>