I have two activities A and B, and from activity A, I click on a button that opens a dialog box which contains a form consisting of two edit text fields and a button(the button in the dialog box is used to start activity B). So, my question is: how do I pass a string from activity B to activity A, but without closing the dialog box(the string will be used to fill one of the two edit text fields).
feedback
|
|
You need to create a class to store the variable. In ActivityB use set the value of the variable, the created class stores it and in ActivityA get the value of the variable.
In ActivityB put this line in to the appropriate place:
In ActivityA put this line in to the appropriate place:
And that's it! | |||||||
feedback
|
|
If I understand your problem correct then you want to keep dialogbox when activity B returns result. If such case then you can open dialog box onActivityResult
Note : Activity A must not be SingleTask, SingleInstance, SingleTop. I hope it will helps KPBird | |||
|
feedback
|
|
You can use the broadcast system to send an Intent containing data to another activity. Search google or stackoverflow there are a lot of tutorials and examples of how to achieve this. as i understand you want activity a to get notified and fill a field based on some action in the dialog. what i am suggesting is one way of doing this. the other answers provide also different solutions to the same problem. also you can register an interface with the creation of your dialog which will be called from inside the dialog and do something in the first activity. | |||
|
feedback
|
|
I think you need to use Bundle and static global variable and onActivityResult(). If you want to edit client with previous client to new client . Suppose you have "ClientList" Activity and "EditClient" Activity Write into "EditClient" Activity
| |||
|
feedback
|