关于Android中获取Intent里的数据
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的方法进行处理~
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。