标签:
Intent it=new Intent(login.this,RegisterActivity.class);
Bundle bundle=new Bundle();
bundle.putString("phone",phone);
bundle.putString("country",country);
it.putExtras(bundle);
接收端
Intent it=getIntent();
Bundle bundle=it.getExtras();
phone=bundle.getString("phone");
标签:
原文地址:http://www.cnblogs.com/liutanrong/p/4570349.html