The following code is used to send data from an activity to another activity :
Intent intent = new Intent(this, SecondActivity.class);
intent.putExtra("number", 50);
startActivity(intent);
How do I receive the data on the activity intended?
for those who know the answer please write in the comment column😁
Congratulations @faizura! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :
You can view your badges on your Steem Board and compare to others on the Steem Ranking
If you no longer want to receive notifications, reply to this comment with the word
STOP
Vote for @Steemitboard as a witness to get one more award and increased upvotes!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit