在android系统中的intent对象是不支持直接传递int数据类型的,那么解决这类问题有两种方法:
一是通过数据类型转换,不过在有些特殊的情况下这种方法并不适用;
二是通过bundle这个对象来封装数据进行传递,例如
发送端:
Bundle bundle = new Bundle(); bundle.putInt("deptname", 3); intent.putExtras(bundle);
接收端:
Bundle bundle=this.getIntent().getExtras();
这样就可以解决问题。
|