リスト ビューのテキストが非常に細くなっています。テキストサイズを変更して大きくすることもできますが、他にできることがあるかどうかを確認して、デバイスの画面サイズと解像度に基づいて適切なサイズを自動的に選択するようにします。
私の主な活動はリストビューを保持しています:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity" >
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:dividerHeight="0.1dp"
>
</ListView>
</LinearLayout>
私の listItem xml は、リスト ビューの各項目がどのようにフォーマットされているかです。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<TextView android:id="@+id/itemName"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>