表の行には、2 つのテキストビューがあります。しかし、テキストを表示しようとしていて、テキストの長さが長い場合、すべての文字列を見ることができません。部分的にしか見えない
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/Add"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/restaurant_address"
android:textStyle="bold" />
<TextView
android:id="@+id/Restaurant_add"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="2"
android:singleLine="false" />
</LinearLayout>
</TableRow>
何がエラーなのかわかりません..私がしている間違いが何であるかを知ることができますか?
私はsinglelineもfalseに設定し、ellipsizeを終了しました。それでも私は同じ問題に直面しています。
ありがとう:)