2017-11-06 10 views
0

내 알리미 대화 상자에 구분선 아래 제목이 있습니다. 문제를 해결하려면 어떻게해야합니까? PIC는Android 구분 다이얼로그 제목 디바이더 아래

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

답변