我创建了一个带有自己的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>
答案 0 :(得分:1)
我认为这可能是你想要的,你只需要在啤酒名称而不是fill_parent上使用wrap_content来防止截断TextView。
<?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="wrap_content"
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>
答案 1 :(得分:0)
我相信你可能想要做的就是使用选框。我会像这样修改你的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:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
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>