在表格行中,我有 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>
我没有得到什么错误..我能知道我在做什么错误吗?
我也将单行设置为 false 并将椭圆大小设置为结束。但我仍然面临同样的问题。
谢谢:)