有没有办法改变Progress Dialog背景的黑色?
答案 0 :(得分:15)
您可以像这样更改ProgressDialog的主题:
ProgressDialog dialog = new ProgressDialog(this, AlertDialog.THEME_HOLO_DARK);
dialog.setTitle("Title");
dialog.setMessage("Message");
dialog.show();
答案 1 :(得分:5)
用于带白色背景的加载对话框
ProgressDialog progressDialog = new ProgressDialog(this, AlertDialog.THEME_HOLO_LIGHT);
progressDialog.setMessage("Loading");
progressDialog.show();
答案 2 :(得分:0)
试试这个
textview.setTextColor(Color.RED);
//textview must be defined in your class
或
root.setBackgroundColor(Color.WHITE);
答案 3 :(得分:-5)
Dialog.setBackgroundColor(颜色名称或十六进制值);