Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

如何利用intent来传递int数据

$
0
0

在android系统中的intent对象是不支持直接传递int数据类型的,那么解决这类问题有两种方法:

一是通过数据类型转换,不过在有些特殊的情况下这种方法并不适用;

二是通过bundle这个对象来封装数据进行传递,例如

发送端:

 Bundle bundle = new Bundle();  
 bundle.putInt("deptname", 3); 
 intent.putExtras(bundle);  

接收端:

Bundle bundle=this.getIntent().getExtras();

这样就可以解决问题。


作者:kobe73er 发表于2013-1-14 16:00:44 原文链接
阅读:55 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>