リストビューアイテムには次のレイアウトがあります。低解像度デバイスで1dpのパディングが表示されない
<?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:background="@drawable/border"
android:orientation="vertical"
android:paddingBottom="1dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light">
....
</LinearLayout>
</LinearLayout>
外側のレイアウト(@drawable/border
)の背景は灰色であり、外側のレイアウトのpaddingBottom
は1dp
と内側レイアウトの背景が各リストビュー項目間の灰色の線があり、白色であるからです。
しかし、低解像度(ldpi)デバイスでは、この灰色の線は表示されません。
外部レイアウトのパディングを2dp
に変更すると、灰色の線が表示されますが、高解像度のデバイスでは太すぎます。 2dp
の代わりに2px
を使用すると、より良い結果が得られます。
低解像度デバイスに灰色の境界線を表示する最適な方法は何ですか?