android – AlertDialog背景颜色

前端之家收集整理的这篇文章主要介绍了android – AlertDialog背景颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用具有自定义布局的AlertDialog.布局中TextView的颜色为黑色,因此在使用Holo.Light在 Android 4.0上打开对话框时,文本是可见的.但是,如果在Android 2.2中打开对话框,则由于灰色背景,文本不可见.有没有办法改变背景颜色?

解决方法

只需将layout.xml文件中根视图的背景定义为您想要的颜色即可.

像这样:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@color/dialog_background" >
...
原文链接:https://www.f2er.com/android/315329.html

猜你在找的Android相关文章