0

左側にビールのスタイルがあり、右側に平均評価があるはずの独自の 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>
4

2 に答える 2

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>
于 2013-07-03T14:03:40.803 に答える