Android: How to get a modal dialog or similar modal behavior?

后端 未结 11 1924
暗喜
暗喜 2020-12-01 05:17

These days I\'m working on simulating modal dialog in Android. I\'ve googled a lot, there\'s much discussions but sadly there\'s not much options to get it modal. Here\'s so

11条回答
  •  不知归路
    2020-12-01 05:37

    One solution is :

    1. Put all code for each selected button into the listener of each button.
    2. alert.show(); must be the last code line in the function calling the Alert. Any code after this line will not wait to close the Alert, but will execute immediately.

    Hope Help!

提交回复
热议问题