安卓数据传递之---putextra与putextras
Posted yfceshi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓数据传递之---putextra与putextras相关的知识,希望对你有一定的参考价值。
一、public Intent putExtra (String name, double[] value)
获取方法 this.getIntent().getCharSequenceExtra("aaa")
二、public Intent putExtras (Bundle extras)
Bundle bd = new Bundle();
bd.putString("aaa",“bbbb”);
intent.putExtras(bd);
获取方法
Bundle bd=this.getIntent().getExtras();
bd.getString("aaa"));
三、总结
带s的得通过个Bundle来绑定数据
以上是关于安卓数据传递之---putextra与putextras的主要内容,如果未能解决你的问题,请参考以下文章
在从 Fragment 内的 RecyclerView 的 ViewHolder 调用的 startActivity(intent) 中使用 putExtra 时,应用程序崩溃