0

我创建了一个带有自己的 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>
4

2 回答 2

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>
于 2013-07-02T03:08:23.927 回答
0

I believe what you probably want to do is use marquee. I would modify your xml like so:

<?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>
于 2013-07-03T14:03:40.803 回答