我正在使用具有自定义布局的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" > ...