問題は何らかの形で 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+ で機能させるにはどうすればよいですか?