Hello,
I try to develop a Android Application but I don't know how to handle
the workflow.
All examples are using one Activity and add some small functions. But
how is it if
I need a lot of more functions and views.
I don't think that all should be in one activity, so I checked out the
k9mail source code
and let me inspire ;)
I found this code:
Accounts.actionLaunch(this);
finish();
public static void actionLaunch(Context context) {
Intent intent = new Intent(context, Accounts.class);
intent.putExtra(EXTRA_STARTUP, true);
context.startActivity(intent);
}
The start from a activity another and destroy the other. So is that
the correct workflow of developing apps in android? Or is all
functions in one activity recommend?
Thanks for help.
PS: I am a struts developer so I mostly create for a new part of my
app a new action. So iam realy confuse with the android...
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---