how to navigating back from activity to fragment, after i pressed a button in activity?
this is the case:
- i call activity from fragment to pass data
- after pass a simple data, activity automatically back to fragment
please help me :D
how to navigating back from activity to fragment, after i pressed a button in activity?
this is the case:
please help me :D
When you are on your activity after you finish work there call:
onBackPressed();
But the best way to achieve this is by calling startActivityForResult from your fragment, it calls your Activity and after you finish work there you return to your fragment.
Here is an example how to achieve this