How can I call another activity from one (the current) activity?
And for the same I want to call an activity which contains a dialog message box from my current activity.
|
How can I call another activity from one (the current) activity? And for the same I want to call an activity which contains a dialog message box from my current activity. |
|||||
|
|
First question. Use the Intend to call another Activity. and in Manifest, should add activity android:name="com.company.listview.ListViewImage">
Second Question.
and Activity2.
|
|||||
|
|
I used following code on my sample application to start new activity.
|
|||
|
|
|
check the following code to call one activity from another.
|
|||
|
|
|
As we don't know what are the names of your activities classes, let's call your current activity Activity1, and the one you wish to open - Activity2 (these are the names of the classes) First you need to define an intent that will be sent to Activity2:
Then, you can simply launch the activity by running: |
|||||||
|
|
This task can be accomplished using one of the android's main building block named as Intents and One of the methods An intent is an abstract description of an operation to be performed. It can be used with startActivity to launch an Activity, broadcastIntent to send it to any interested BroadcastReceiver components, and startService(Intent) or bindService(Intent, ServiceConnection, int) to communicate with a background Service. An Intent provides a facility for performing late runtime binding between the code in different applications. Its most significant use is in the launching of activities, where it can be thought of as the glue between activities. It is basically a passive data structure holding an abstract description of an action to be performed. Refer the official docs -- http://developer.android.com/reference/android/content/Intent.html
So suppose you have two Activity class and on a button click's
So the Intent would be like this
Finally this will be the complete code
This exmple is related to button click you can use the code anywhere which is written inside button click's |
|||
|
|