Skip to content Skip to sidebar Skip to footer

How To Send The Data From Activity To Fragment Android

In Activity, i called web service and getting json response. Now i need to send this json response in one of the fragment of Activity. Please anyone help me how to send the json re

Solution 1:

runOnUiThread(new Runnable() {

        @Override    
        public void run() {  

            //here i am getting response. i need this response in fragment .-->

            //then here you can store(set) your json response value in SharedPreferences, please define SharedPreferences method globally

            //and  after when you call fragment retrieve(get) SharedPreferences Method in your Fragment.

        }    
    });    

Post a Comment for "How To Send The Data From Activity To Fragment Android"