Heads up! This post was written 12 years ago. Some information might be outdated or may have changed since then.
За да покажем диалогов прозорец в android може да ползваме следното:
Dialog dialog = new Dialog(VouchersActivity.this);
dialog.setContentView(R.layout.dialog_filters);
dialog.setTitle("Заглавие");
dialog.setCancelable(true);
dialog.show();

Back to all posts