Reputation: 1183
i want to show dialog (not alert dialog) but i don't want dialog show modal.
How to set dialog to show modal or not?
this is my code
Dialog dialog = new Dialog(CategoryList.this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(actionview);
dialog.show()
Upvotes: 0
Views: 1974