Android学习心得(附2)——Intent参数传递
当Activity与Activity/Service(或其它情况)有时与要进行参数传递,最常用也是最简单的方式就是通过Intent来处理。
看如下代码:
Intent intent = new Intent(...);Bundle bundle = new Bundle();bundle.putString("NAME", "zixuan");intent.putExtras(bundle);context.startActivity(intent); 或 context.startService(intent);
Bundle bunde = intent.getExtras();String name = bunde.getInt("NAME");