Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

Sending String from one activity to another

Intent intent = new Intent(activity2.this, activity1.class);
intent.putExtra("message", message);
startActivity(intent);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Sending #String #activity
ADD COMMENT
Topic
Name
4+3 =