Android 两个Activity 之间传递参数

直接上代码

 Intent intent = new Intent();
 intent.setClass(MainActivity.this, Test1Activity.class);
 intent.putExtra("str", "come from first activity");
 startActivity(intent);

在另一个Activity中接受参数

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

  Intent intent = getIntent();
  Bundle bundle = intent.getExtras();
  String str = bundle.getString("str");

}

posted @ 2013-02-05 11:25  oftenlin  阅读(2513)  评论(0编辑  收藏  举报