警报对话框下的白色背景

时间:2015-04-14 11:44:55

标签: android

为什么我在警报对话框下显示此白色背景。我一直试图找出问题一个小时,没有运气。有人可以帮帮我吗?

另外,为什么标题的左侧和右侧有一点暗色调。

enter image description here

protected void onPostExecute(String result) {
    //progressDialog.dismiss();
    try {
        JSONObject json = new JSONObject(result);
        String status = json.getString("status");
        String message = json.getString("message");
        if(status.equals("true")) {
            Intent intent = new Intent(context, HomeActivity.class);
            intent.putExtra(LoginActivity.EXTRA_MESSAGE, status);
            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(intent);
        }
        else{
            AlertDialog.Builder builder = new AlertDialog.Builder(activity);
            builder.setMessage(message)
                   .setTitle("Error")
                   .setNeutralButton("OK", new DialogInterface.OnClickListener() {
                       public void onClick(DialogInterface dialog, int which) {
                           dialog.cancel();
                       }
                   }).create().show();
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

4 个答案:

答案 0 :(得分:27)

导入   android.support.v7.app.AlertDialog 而不是 android.app.AlertDialog

答案 1 :(得分:8)

将您的代码更改为 -

 Dialog alertDialog = new Dialog(this);
    alertDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    alertDialog.setContentView(R.layout.tabs);
    alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
    alertDialog.show();

或者您可以在现有代码中添加主题。

AlertDialog.Builder alertDialog = new AlertDialog.Builder(activity, AlertDialog.THEME_DEVICE_DEFAULT_LIGHT);

答案 2 :(得分:6)

初始化对话框构建器时,将第二个参数作为主题传递。 所以改变

AlertDialog.Builder builder = new AlertDialog.Builder(activity);

AlertDialog.Builder builder = new AlertDialog.Builder(activity, AlertDialog.THEME_DEVICE_DEFAULT_LIGHT);

这是旧答案,现在

导入android.support.v7.app.AlertDialog而不是android.app.AlertDialog

accepted answer中给出。

答案 3 :(得分:1)

如果你可以访问Dialog类,试试这个:

 alertDialog.getWindow().getDecorView().setBackgroundColor(Color.TRANSPARENT);    

之前:

dialog_before

后:

dialog_after