gpt4 book ai didi

android - 如何在警报对话框中设置警报文本大小

转载 作者:太空宇宙 更新时间:2023-11-03 12:36:07 25 4
gpt4 key购买 nike

默认情况下的警报消息对于屏幕较小的特定设备来说太大了,我想将其设置为自定义 dp

我的警报是这样的

OnClickListener addNewItemListener = new OnClickListener() {
public void onClick(View v) {
AlertDialog.Builder alert = new AlertDialog.Builder(
MyActivity.this);

LinearLayout myLayout= new LinearLayout(MyActivity.this);
myLayout.setOrientation(LinearLayout.VERTICAL);

alert.setTitle(R.string.add_title);
alert.setMessage(R.string.add_message);

final TextView t1 = new TextView(MyActivity.this);
t1.setText("Name");
final EditText input1 = new EditText(MyActivity.this);
myLayout.addView(t1);
myLayout.addView(input1);
alert.setView(myLayout);
alert.setPositiveButton(R.string.cancel,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int whichButton) {
}
});
alert.setNegativeButton(R.string.ok,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int whichButton) {
try {
....
} catch (RuntimeException e) {
Alerts.DatiErrati(MyActivity.this);
}

}
});
alert.show();
}
};

如何设置提醒消息的文本大小?

最佳答案

编辑 2:

这是最好的方法

AlertDialog.Builder builder = new Builder(this);
builder.setMessage("Record and Images will be deleted?")
.setTitle("MyTitle")
.setCancelable(true)
.setPositiveButton("Yes",
new DialogInterface.OnClickListener()
{

public void onClick(DialogInterface dialog,
int id)
{

dialog.cancel();
finish();
}
})
.setNegativeButton("No",
new DialogInterface.OnClickListener()
{

public void onClick(DialogInterface dialog,
int id)
{
dialog.cancel();
}
});
AlertDialog dialog = builder.create();
dialog.show();
TextView textView = (TextView) dialog.findViewById(android.R.id.message);
textView.setTextSize(40);

您可以使用以下内容来获取更大的文本

  alert.setMessage(Html.fromHtml("<Big>"+getString(R.string.add_message)+"</Big>"));

注意:您可以使用更多big's来获得更大的文本

关于android - 如何在警报对话框中设置警报文本大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18767228/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com