我们如何更改“进度”对话框的背景颜色

时间:2012-08-10 12:07:44

标签: android

我们如何更改“进度”对话框的背景颜色?

progessDialog = ProgressDialog.show(this, "", "Please Wait....",true);
progessDialog.getWindow().setContentView(R.layout.progressdialog);

1 个答案:

答案 0 :(得分:0)

更改颜色背景

   final ProgressDialog pDialog = new  ProgressDialog(this,AlertDialog.THEME_HOLO_LIGHT);

//final ProgressDialog pDialog = new  ProgressDialog(this);

// pDialog.getWindow().setBackgroundDrawable(new      ColorDrawable(Color.YELLOW));

    pDialog.setMessage("Loading...");

    pDialog.show();
相关问题