android: Activity.startActivityForResult() or ActivityGroup? -
i have following situation:
- activity -> resulta
- activity b -> resultb
- activity c -> resultc
and need results (a, b & c) build final out put?
what's better way:
aa extends activity { startactivityforresult(a); startactivityforresult(a); startactivityforresult(a); }
or make aa subtype of activitygroup?
activities a, b , c not require visible (foreground) @ same time.
thank you!
imho, none of above.
popping out of 1 activity briefly via startactivityforresult()
fine...once. gets cumbersome users , developers alike when there several.
consider recasting ui wizard, perhaps driven viewflipper
, can keep of in single activity. provides user recognized pattern going , forth within chain of steps leading them providing of information need.
Comments
Post a Comment