在当前的Activity中,创建一个新的Intent:String value="Hello world";Intent i = new Intent(CurrentActivity.this, NewActivity.class); i.putExtra("key",value);startActivity(i);然后在新的Activity中,检索这些值:Bundle extras = getIntent().getExtras();if (extras != null) { String value = extras.getString("key"); //The key argument here must match that used in the other activity}使用此技术将变量从一个Activity传递到另一个Activity。