将字体大小更改为AlertDialog是一个关于Android应用程序中AlertDialog的问题。AlertDialog是一个对话框,用于向用户显示重要信息或获取用户输入。要更改AlertDialog中的字体大小,可以使用以下方法:
alert_dialog_layout.xml
,并在其中设置字体大小。例如: android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="这是一个AlertDialog"
android:textSize="18sp" />
</LinearLayout>
AlertDialog.Builder builder = new AlertDialog.Builder(this);
LayoutInflater inflater = this.getLayoutInflater();
View dialogView = inflater.inflate(R.layout.alert_dialog_layout, null);
builder.setView(dialogView)
.setTitle("AlertDialog标题")
.setPositiveButton("确定", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// 点击确定按钮后的操作
}
})
.setNegativeButton("取消", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// 点击取消按钮后的操作
}
});
AlertDialog alertDialog = builder.create();
alertDialog.show();
这样,AlertDialog中的字体大小就会更改为自定义布局文件中设置的大小。
领取专属 10元无门槛券
手把手带您无忧上云