In the operation in which you receive JSON data, write the following code to send TAB activity
Intent i = new Intent(getApplicationContext(), Another_Activity.class); i.putExtra("key", jsonObject.toString()); startActivity(i);
to access data, that is, to a JSON object. Write the following code in the Activity tab
JSONObject jsonObject = new JSONObject(getIntent().getStringExtra("key")); Toast.makeText(Another_Activity.this, ""+jsonObject.get("Your JSON VALUE"), Toast.LENGTH_SHORT).show();
Your JSON VALUE is the file that is present in the data. for example, "Business Identifier" 1 here the business identifier is the JSON value, replace it with
source share