Да, вы создаете собственный AlertDialog для него.Сначала сделайте макет для него.Затем используйте его для настройки AlertDialog, например:
LayoutInflater layoutInflater = LayoutInflater.from(MainActivity.this);
View view = layoutInflater.inflate(R.layout.popup_layout,null);
final AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();
alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
alertDialog.setView(view);
//You can find your view like this
TextView txtMsg = (TextView) view.findViewById(R.id.txtMsg);
txtMsg.setText("");
//Or if u want to provide any button
view.findViewById(R.id.btnOK).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
alertDialog.dismiss();
// your function
}
});
alertDialog.getWindow().getAttributes().windowAnimations = R.style.DialogAnimation; //if u want to give any animation
alertDialog.show();