我创建了一个带有自己的 xml 的 customlistview 适配器,它应该在左侧具有啤酒风格,然后在最右侧具有 avg 评级。我的问题是一些啤酒风格的字符很长并且被截断:
目前我的列表项的 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>