This code below returns json into a textView. How do I pass the data within this textview to another activity?
 private void showJSON(String response){
    String name="";
    String address="";
    String vc = "";
    try {
        JSONObject jsonObject = new JSONObject(response);
        JSONArray result = jsonObject.getJSONArray(Config.JSON_ARRAY);
        JSONObject collegeData = result.getJSONObject(0);
        name = collegeData.getString(Config.KEY_NAME);
        address = collegeData.getString(Config.KEY_ADDRESS);
        vc = collegeData.getString(Config.KEY_VC);
    } catch (JSONException e) {
        e.printStackTrace();
    }
    textViewResult.setText("Name:\t"+name+"\nAddress:\t" +address+ "\nVice Chancellor:\t"+ vc);
}
This is the tutorial link I'm following. I know it can be done using intents but I wasn't sure how to use it in this example.
Thanks
 
     
    