如何减小showAlertDialog标题的字体大小?
答
(脏)的方式是覆盖palm css文件的.dialog标题类。但是这会影响您应用的所有警报对话框。
.dialog-title {
font-size:5px !important;
}
更好的方法是用使用一个对话框模板:
this.controller.showDialog({
template: 'dialogs/sample-dialog',
assistant: new SampleDialogAssistant(this),
wisdom: randomLorem(),
preventCancel:true
});
更多信息请参见Palm Developer Guide。