即时使用[甜蜜警报对话] [1]图书馆
[1]:https://github.com/leogiroux/sweet-alert-dialog显示提醒对话框,但我无法更改提醒消息中的字体大小如何更改.setTitleText()
或.setContentText()
...文字方法大小?
答案 0 :(得分:0)
你必须覆盖它:
public class SweetAlertDialog2 extends SweetAlertDialog {
public SweetAlertDialogMulti(Context context, int alertType) {
super(context, alertType);
this.setOnShowListener(dialog -> {
SweetAlertDialog alertDialog = (SweetAlertDialog) dialog;
TextView text = alertDialog.findViewById(R.id.content_text);
text.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_END);
text.setLines(7);
text.setTypeface(tf)
});
}
}