In my app I've got a fragment which is called "About". On handhelds I want this fragment to look like a usual activity but on tablets I want it to be a dialog. Which way is preferred to handle this situation?
feedback
|
|
Make a style for this in your Alternatively, make your class a DialogFragment, and then either embed it into a view hierarchy, or show it as a dialog, as explained here: http://developer.android.com/reference/android/app/DialogFragment.html#DialogOrEmbed | ||||
|
feedback
|