分频器下的Android警报对话标题

时间:2017-11-06 01:22:23

标签: android android-alertdialog

我的警报对话框在分隔符下有标题,我该如何解决?看看图片

final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this, android.R.style.Theme_Holo_Dialog);
builder.setMessage(stringhowtoplay)
    .setCancelable(false)
    .setTitle("How to Play")
    .setPositiveButton("Entendi", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int id){
            dialog.cancel();
        }
    }});
AlertDialog alert = builder.create();
alert.show();

error image

1 个答案:

答案 0 :(得分:0)

这是警报对话框中的默认布局。您必须创建custom layout Alert Dialog才能将其删除。