0

我尝试更改 AlertDialog的背景和文本颜色。 但我只能用 Activity 改变标题的颜色:
android:windowTitleStyle


AlertDialog.Builder adb = new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.AlertDialogCustom));

样式.xml

style name="AlertDialogCustom" parent="Holo.Theme.Sherlock"


我怎样才能做到这一点?谢谢。

4

3 回答 3

3
adb.setMessage(Html.fromHtml("<font color='#FF0000'><b>John:</b></font>"+"How are you?"))

这是用于更改文本颜色您可以创建自己的对话框检查此链接 http://www.helloandroid.com/tutorials/how-display-custom-dialog-your-android-application

http://developer.android.com/guide/topics/ui/dialogs.html

于 2012-10-17T16:29:33.697 回答
1

检查这个

于 2012-10-18T03:09:18.177 回答
0

尝试这个:

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
<style name="AlertDialogCustom" parent="@android:style/AlertDialog"> 
    <item name="android:textColor">#00FF00</item> 
    <item name="android:background">#0000FF</item>
    <item name="android:typeface">monospace</item> 
    <item name="android:textSize">10sp</item> 
</style> 
</resources>
于 2012-10-17T16:29:21.957 回答