如何传递数组到另一个活动?数组

由网友(沙漠中的草)分享简介:我知道,我们可以能够与它的价值传递任何对象到另一个活动的方法 putExtra()和 getExtra 的方法。但现在我想知道是否有可能将数组传递到另一个活动或没有?或者,如果是则让我知道我可以通过阵列到另一个活动?谢谢你。解决方案 叠B =新包();b.putStringArray(重点,新的String...

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

解决方案

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

而对于receiveing​​

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

C语言里怎样向函数里传递一个完整的数组,而不是数组第一个元素的地址

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);

阅读全文

相关推荐

最新文章