6

我试图通过使用这个函数来改变 AlertDialog 字体

private void saveDialog(){

    AlertDialog.Builder builder = new AlertDialog.Builder(this); 
        builder.setTitle(res.getString(R.string.dialog_title))
               .setMessage(res.getString(R.string.dialog_saveconfirm)) 
               .setCancelable(false)
               .setNegativeButton(res.getString(R.string.dialog_cancel), new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int which) {
                    dialog.cancel();
                 }
               })
               .setPositiveButton(res.getString(R.string.dialog_ok), new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int which) {
                    //do some thing
            });
        AlertDialog alert = builder.create();
        alert.show();

        TextView tit = (TextView) alert.findViewById(android.R.id.title);
        TextView msg = (TextView) alert.findViewById(android.R.id.message);
        Button btn2 = alert.getButton(DialogInterface.BUTTON_NEGATIVE);
        Button btn1 = alert.getButton(DialogInterface.BUTTON_POSITIVE);
        tit.setTypeface(UtiliShare.getTf());
        msg.setTypeface(UtiliShare.getTf());
        btn1.setTypeface(UtiliShare.getTf());
        btn2.setTypeface(UtiliShare.getTf());

}

当我在 Activity 中调用函数时,我设置02-25 17:59:04.759: E/AndroidRuntime(1014): java.lang.NullPointerExceptiontit字体但当我删除tit对话框时效果很好。

我认为其中的错误TextView tit = (TextView) alert.findViewById(android.R.id.title);是返回null。

我该如何解决这个问题?


更新 此链接包含我的问题答案的答案

感谢山姆

4

2 回答 2

1

为了以您想要的方式更改文本视图,我建议对对话框使用自定义布局。看一下

http://developer.android.com/guide/topics/ui/dialogs.html#CustomLayout

于 2013-02-25T16:02:58.383 回答
0

如果你正在使用android.support.v7.app.AlertDialog,你必须使用 android.support.v7.appcompat.R.id.alertTitle否则使用android.R.id.title

于 2018-11-28T15:22:13.673 回答