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