我在对话框片段的 oncreate 对话框方法中创建了一个警报对话框。我正在使用数组适配器填充警报对话框。我的问题是警报对话框的大小取决于适配器中的文本。我希望将警报对话框固定为默认大小。请帮忙。
问问题
156 次
1 回答
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"/>
使用任何一种方法...
于 2013-02-06T07:31:28.850 回答