我有一个对话框,其中有 2 个编辑文本一个标题和评论..我想要这个全息主题的编辑文本。请任何人帮我解决这个问题
问问题
1295 次
1 回答
2
用这个:
AlertDialog.Builder builder = new AlertDialog.Builder(new
ContextThemeWrapper(this, R.style.AlertDialogCustom));
Becoz android 使用 ContextThemeWrapper 来设置对话框的样式。
确保在资源中定义您的自定义样式:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AlertDialogCustom" parent="@android:style/Theme_Holo_Dialog">
<item name="android:textColor">#FFFF00</item>
<item name="android:typeface">monospace</item>
<item name="android:textSize">18sp</item>
</style>
</resources>
您可以在这里获得更多主题:http: //developer.android.com/reference/android/R.style.html
于 2012-10-05T12:08:23.247 回答