我想在对话框中显示堆栈跟踪。 这是对话框:
AlertDialog dialog = new AlertDialog.Builder(this)
.setTitle(title)
.setCancelable(false)
.setMessage("Occur exception, please click me")
.show();
TextView textView = (TextView)dialog.findViewById(android.R.id.message);
textView.setTextSize(30);
它正在工作,但我想更改标题文本大小和标题textColor。 我试过了:
TextView titleView = (TextView)dialog.findViewById(android.R.id.title);
titleView.setTextSize(40);
它不起作用。也许,改变标题颜色和文字大小是不可能的?