我有一个对话框,其中有2个编辑文本,标题和评论..我想在holo主题中使用这个edittext。请任何人帮我解决这个问题
答案 0 :(得分: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