user2955394
user2955394

Reputation: 1183

How to disable modal of dialog in android?

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

Answers (1)

jiashie
jiashie

Reputation: 147

you can use PopupWindow instead, and setOutsideTouchable(true). or try this

Upvotes: 1

Related Questions