When to use Android PopupWindow vs Dialog

后端 未结 3 1159
臣服心动
臣服心动 2020-12-16 10:30

I\'m unclear about when to use PopupWindow vs Dialog. Any insight would be much appreciated. Thanks.

3条回答
  •  失恋的感觉
    2020-12-16 11:13

    I think, that you should use Dialog for simple user interaction (YES,NO). I usually use Dialog for simple user interaction and WindowPopup for a little bit more complex view. One example of WindowPopup is AutoCompleteTextView.

    Hope it helps.

提交回复
热议问题