android - Difference between startActivity and startActivites -
android - Difference between startActivity and startActivites -
there these two:
startactivities (intent[] i, bundle b) = api level 16 startactivity (intent i, bundle b) = api level 16 not interested in these since used backward compatibility (i guess)
startactivities (intent[] i) = api level 11 startactivity (intent ) = api level 1 i have looked @ source , have read android doc reference, didn't grasp it.
what difference between activity.startactivity , activity.startactivities , used (examples)?
startactivities (intent[] i, bundle b)
starts list of activities using intents array i (used launch several activities @ once)
startactivity (intent i, bundle b) start single activity
the diference between versions take bundle , ones without allow provide activityoptions when start starting activity used activity transitions , animations
see http://developer.android.com/reference/android/app/activityoptions.html
android android-activity
Comments
Post a Comment