使用Intent Activity之间传值

来源:互联网 发布:淘宝企业店铺有扶持吗 编辑:程序博客网 时间:2024/05/12 13:41
发送:

//             intent = new Intent(this,xxxxxxx.class); 
//             intent.putExtra("idnumber", idnumber);
//             startActivity(intent);



接收:
         //把传送的身份证号取出来
          Intentintent = getIntent();//两种方法都可以写
          //Intentintent = new Intent(this, RegisterForMoblieActivity.class);
          idnumber =intent.getStringExtra("idnumber");
原创粉丝点击