码迷,mamicode.com
首页 > 移动开发 > 详细

关于Android中获取Intent里的数据

时间:2014-11-28 00:51:54      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   sp   on   数据   div   log   

Intent获取数据和发送数据的办法:

//直接通过Intent发送
intent.putExtra("name","wytings");
//直接通过Intent接收
String mName= intent.getStringExtra("name"); //通过Bundle发送 Bundle bundle = new Bundle(); bundle.putString("NAME", "wytings"); intent.putExtras(bundle); //通过Bundle接收 Bundle bundle = intent.getExtras(); String mName= bundle.getString("NAME");

附:如果不知道intent里面有什么,建议用直接用Bundle获取全部内容,管他怎么发送的,拿过来再通过Bundle的方法进行处理~

关于Android中获取Intent里的数据

标签:android   style   blog   color   sp   on   数据   div   log   

原文地址:http://www.cnblogs.com/wytings/p/4127473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!