Android Activity 之前专递数据

发送数据:

Intent i = new Intent(getApplicationContext(), ActivityB.class);
i.putExtra(key, value);
startActivity(i);

接收数据:

Bundle extras = getIntent().getExtras();
if(extras !=null) {
    String value = extras.getString(key);
}


你可能感兴趣的:(Android Activity 之前专递数据)