l want to simulate user operation,for example:
l was listening music, and  l want to take picture,
that's two activities, how should l simulate this operations?

for start one activity, it is:
Intent intent = new Intent(mContext,MultiActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mContext.startActivity(intent);

but how to start 2 activities?
both of them run in one thread
or in two threads?how do the activity lifecycle
switch?


3ks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to