警报对话框大小因列表视图而异

时间:2013-02-06 06:08:14

标签: android

我在对话框片段的oncreate对话框方法中创建了一个警告对话框。我正在使用数组适配器填充警报对话框。我的问题是警报对话框的大小取决于适配器中的文本。我希望将警报对话框修复为默认大小。请帮助。

1 个答案:

答案 0 :(得分:0)

place the textview in scrollview with fixed height.
they are two methods to do that
1)by using the ScrollView


<LinearLayout android:id="@+id/LinearLayout01"
 android:layout_width="fill_parent" android:layout_height="fill_parent"
 android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res /android">
<ScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1">
 <TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
     android:layout_height="wrap_content"
android:text="Venkata Reddy,"
</ScrollView>
</LinearLayout>
  

2方法

<TextView
    android:text="Single-line text view that scrolls automatically if the text is too long to fit in the widget" 
    android:singleLine="true" 
    android:ellipsize="marquee"
    android:marqueeRepeatLimit ="marquee_forever"
    android:focusable="true"
    android:focusableInTouchMode="true" 
    android:scrollHorizontally="true"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"/>

使用任何一种方法......