InterviewSolution
Saved Bookmarks
| 1. |
When should you use a Fragment, rather than an Activity? |
|
Answer» In Android, UI is representing as an Activity. Single Screen in an application represents as Activity while FRAGMENTS are reusable UI with business logic. Activity is a collection of Screen. In android application, Fragments are using in Navigation DRAWER in our entire screen. You can also use fragment to display Google Map on screen. Following are important POINTS about a fragment:
|
|