左側にビールのスタイルがあり、右側に平均評価があるはずの独自の xml を持つ customlistview アダプターを作成しました。私の問題は、いくつかのビール スタイルが文字数が多く、途切れていることです。
現在、リスト項目の私のxmlは次のとおりです。
<?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:orientation="horizontal" >
<TextView
android:id="@+id/breweryName"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:text="Large Text"
android:layout_weight="4"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/breweryRate"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:text="Large Text"
android:layout_weight="1"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>