ab11
ab11

Reputation: 20100

Android: should I launch a new activity or show a dialog?

Let's say I want my app to display a file browser. Are there any significant advantages or disadvantages to having this file browser extend Dialog instead of extending Activity? I was unable to to find anything useful in the documentation; any input?

Thanks

Upvotes: 3

Views: 982

Answers (1)

xil3
xil3

Reputation: 16439

To be honest, it's all about user experience. So if they are just going to be selecting a file and that's it, then I would recommend using a Dialog. If you want it to do a lot more than just selecting a file and then disappearing, then definitely open it up in a new Activity.

Upvotes: 3

Related Questions