Hi All ,
In the second activity, modify the onCreate() function
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.second);
Intent in=getIntent();
String msg=in.getStringExtra("msg");
Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
}
In the second activity, modify the onCreate() function
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.second);
Intent in=getIntent();
String msg=in.getStringExtra("msg");
Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
}
No comments:
Post a Comment