我有一个自定义对话框,在其中我在标题栏中显示一些文本。在 android 4.0 中,它正在截断文本。只有 ... 出现在下一行。我正在将以下 xml 膨胀到对话框中。它在 3.2 上运行良好。
我已经尝试过 layout_weight="1" 和 android:ellipsize="none" 但没有任何效果
<LinearLayout
android:layout_height="fill_parent"
android:weightSum="1"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:background="@drawable/rounded_textbox_base"
android1:layout_width="fill_parent"
android1:minWidth="500dp">
<TableRow
android:id="@+id/tableRow1"
android1:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_button"
android1:gravity="center"
android:layout_weight="1">
<TextView
android:id="@+id/tv_nmp_needmore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android1:layout_marginLeft="20dp"
android1:layout_marginRight="20dp"
android:ellipsize="none"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge"
android1:gravity="center"
android1:textColor="@color/white" >
</TextView>
</TableRow>
<LinearLayout
android:id="@+id/linearLayout1"
android:weightSum="1"
android:layout_marginBottom="30dp"
android:layout_marginTop="50dp"
android1:layout_gravity="center"
android1:gravity="center"
android1:layout_width="wrap_content"
android1:layout_height="wrap_content">
<Button
android:layout_height="wrap_content"
android:id="@+id/btn_nmp_yes"
android:background="@drawable/dialog_ok_button"
android:layout_width="wrap_content">
</Button>
<TextView
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/textView1"
android:text="OK"
android:textStyle="bold"
android:layout_marginLeft="20dp"
android1:textColor="#000000">
</TextView>
</LinearLayout>
</LinearLayout>
谢谢,马尼什