FIRST CLASS:
b.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
s=te.getText().toString();
Intent intent = new Intent(First.this,Second.class);
intent.putExtra("name", s);
StartActivity(intent);
}
});
SECONT CLASS:
Bundle o=getintent().getExtras();
String s=o.getString("name");
No comments:
Post a Comment