如何在 Android 中设置 AlertDialog 的大小? [复制]
Posted
技术标签:
【中文标题】如何在 Android 中设置 AlertDialog 的大小? [复制]【英文标题】:How can i set the size of an AlertDialog in Android? [duplicate] 【发布时间】:2013-08-10 02:14:02 【问题描述】:我正在 android 中开发一个应用程序,我想在其中缩小默认警报对话框的大小。如何在 Android 中设置 AlertDialog 的大小?
【问题讨论】:
你试过了吗? ***.com/questions/8835931/… 感谢您的超快速响应。让我试试。 【参考方案1】:您可以为对话框设置自己的 XML 布局(下面的示例名为 species_prompt),然后调用
speciesDialog.setContentView(R.layout.species_prompt);
TextView text = (TextView) speciesDialog
.findViewById(R.id.specieshelptext);
在您的对话框方法中,适当地调用每个视图(我在上面仅提供一个示例...)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_
android:layout_ android:layout_gravity="center_horizontal">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01" android:layout_
android:layout_>
<LinearLayout android:orientation="vertical"
android:layout_ android:layout_>
<TextView android:id="@+id/specieshelptext" android:textColor="#FFF"
android:paddingLeft="5dip" android:paddingRight="5dip"
android:layout_ android:layout_ />
<Button android:id="@+id/specieshelpbutton"
android:layout_gravity="center_horizontal" android:layout_below="@id/ScrollView01"
android:layout_ android:layout_
android:layout_weight="1.0" android:layout_centerHorizontal="true"
android:text="Grab species now..." />
<Button android:id="@+id/speciesdismissButton" android:text="Cancel"
android:layout_gravity="center_horizontal" android:layout_
android:layout_ />
</LinearLayout>
</ScrollView>
【讨论】:
感谢您的即时回复。会尝试让您知道。 成功了吗?如果有用,请接受作为答案?以上是关于如何在 Android 中设置 AlertDialog 的大小? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Android 中设置 AlertDialog 的大小? [复制]
如何使用 Ionic\Cordova 在 android 中设置图标和启动画面
Android:如何在 android constraintLayout 中设置视图的最大宽度?