xml - android: best view class to create popup page -
i developing android camera app allow popup of page upon pressing button (besides shoot button)in view of photo capture activity accessing twitter services, including login(of coz button), view tweets(listview or list fragment) of bookmarked users , posting tweets.
i considering approach build layout popup stuff. come across mind dialog fragment, popupwindow , activity.
considering case, view recommended popup component?
depends on content of popup:
- if popup contains list of items use
popupwindow
. - if popup contains few buttons ok/cancel text etc. use
dialogfragment
. - if have more stuff, should use
activity
.
Comments
Post a Comment