2

这个问题在某种程度上与 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+?

4

1 回答 1

2

我的天啊。它总是血腥的FrameLayout。我得到了你的建议。不要使用框架布局。即使你认为它适合,也不要。它会带来很多麻烦。例如,当我将主布局从 更改为 时FrameLayoutLinearLayout它可以完美运行!

于 2013-05-09T09:44:02.340 回答