这个问题在某种程度上与 API 有关。在 API 9+ 中,单元格看起来很完美,如下所示:
但是在 Android 2.3 上它看起来像这样:
我找不到那个原因。这是我的单元格布局:
<LinearLayout
android:id="@+id/cell_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:background="@drawable/rounded_cell"
android:orientation="vertical"
android:padding="5dp" >
...content here
</LinearLayout>
和列表片段布局:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/light_gray" >
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="#00000000"
android:paddingTop="5dp" >
</ListView>
</FrameLayout>
问题肯定在布局中,因为即使在 Eclipse 的布局编辑器中也显示错误。如何使它适用于所有 API 的 9+?