Widget - Dialog Custome

final AlertDialog dialog = new AlertDialog.Builder(MainActivity.this).create();

LayoutInflater inflater = getLayoutInflater();

View convertView = (View) inflater.inflate(R.layout.custom_dialog, null);
dialog.setView(convertView);

TextView txt1 = (TextView)
convertView.findViewById(R.id.textview1);//on custome_dialog
txt1.setText("your text here!");

Button btn1 = (Button) convertView.findViewById(R.id.button1);//on custome_dialog

btn1.setOnClickListener(new View.OnClickListener(){
    public void onClick(View v){
dialog.dismiss();
        showMessage("Aan");
     
    }
});

dialog.show();