Android:textview在平板电脑上进行椭圆化,而它在手机上是多线的

时间:2012-08-15 17:18:05

标签: android listview textview tablet textwrapping

如果文本长于LinearLayout允许的空间,我希望文本为多行,如下图所示。当我在手机上运行应用程序(HTC Desire HD)时会发生这种情况,但是当我在平板电脑(Toshiba Thrive)上运行它时,它会被删除,如图像底部所示:

what I want on top, what happens on bottom

我有一个由行组成的ListView。每行定义如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="4"
    android:gravity="center_vertical"
    >

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_weight="1"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:textStyle="bold"
            android:id="@+id/codeLabel"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
        </TextView>
        <TextView
            android:id="@+id/code"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
        </TextView>
    </LinearLayout>

    <TextView
        android:id="@+id/description"
        android:layout_weight="3"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        />   

 </LinearLayout>

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:-1)

我曾经单独尝试过但失败了,但是在一起

android:scrollHorizontally="false"
android:inputType="textMultiLine"

做了诀窍......虽然我得到警告“inputType”不应​​该与TextView一起使用。