Vishnu Gaikwad
Vishnu Gaikwad

Reputation: 1

how pass data fetched from server to intent in android?

I have to pass data fetched from server to ACTION_DIAL intent. So how could I pass that data to the intent?

Below is my adapter class code:

intent.putExtra,("datafromserver", dataFromS);

How can I handle the fetched from the server and pass this data to the intent?

Upvotes: 0

Views: 79

Answers (1)

Vish
Vish

Reputation: 404

The place where the mobile number is where your received phone number from JSON should be,

Intent intent = new Intent(Intent.ACTION_DIAL, Uri.fromParts("tel", "+91 1166008855", null));
            startActivity(intent);

Upvotes: 3

Related Questions