M. Hossein Amerkashi
unread,Feb 10, 2012, 10:31:09 PM2/10/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to android-progr...@googlegroups.com
Chen,
A form is basically a subclass of Activity.
So, from one activity (form) to start another, use the following:
startActivity(new Intent(this, MyOtherActivity.class)); //this would be your other activity / bridge form that you want to start
finishActivity(); //drop the the current activity
from memory
-Hossein