我已经使用java在我的应用中创建了对话框。我想问一下如何使用java代码调整对话框消息中的文本大小。另外,我想让它中的文字看起来合理(意味着在任何一方都不留空格)。 我的代码示例如下:
if (v == findViewById(R.id.button1)) {
new AlertDialog.Builder(v.getContext())
.setTitle("Paracettamol")
.setMessage(
"This medicine is generally used to cure Fever")
.setNeutralButton("OK", null).show();
另外,我如何强调或使其看起来是斜体或粗体。像 这样的标签在这里不起作用。
答案 0 :(得分:1)
您可以使用想要的文字大小,颜色或其他内容创建自己的TextView
。并使用Builder.setView(View)
代替Builder.setMessage(String)
。