如何传递数组到另一个活动? [英] How to Pass Array to another activity?

查看:220
本文介绍了如何传递数组到另一个活动?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道,我们可以能够与它的价值传递任何对象到另一个活动的方法 putExtra() getExtra 的方法。 但现在我想知道是否有可能将数组传递到另一个活动或没有? 或者,如果是则让我知道我可以通过阵列到另一个活动? 谢谢你。

解决方案

 叠B =新包();
b.putStringArray(重点,新的String [] {值1,值2});
意图I =新的意图(背景下,A类);
i.putExtras(B);
 

而对于receiveing​​

 叠B = this.getIntent()getExtras()。
String []数组= b.getStringArray(密钥);
 

I know that we can able to pass the any object with its value to another activity with the method putExtra() and getExtra methods. but now I want to know whether is it possible to pass the array to the another Activity or not? Or if it is then let me know how I can pass the array to the another Activity ? Thanks.

解决方案

Bundle b=new Bundle();
b.putStringArray(key, new String[]{value1, value2});
Intent i=new Intent(context, Class);
i.putExtras(b);

And for receiveing

Bundle b=this.getIntent().getExtras();
String[] array=b.getStringArray(key);

这篇关于如何传递数组到另一个活动?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆