如何从一个活动传递一个字符串数组值android的另一个活动

如何从一个活动传递一个字符串数组值android的另一个活动

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

问题描述

我有我的应用程序的两项活动。我想通过字符串数组塔从一个活动到另一个..如何从活动通过这个值的活动?

I am having two activities in my application. I want to pass tha array of String from one activity to another.. How to pass this values from activity to activity?

推荐答案

您可以考虑使用Intent.getStringArrayExtra

在第一项活动:

Intent intent = new Intent(context, NewActivity.class);
intent.putExtra("string-array", stringArray);
context.startActivity(intent);

和在第二个

String [] stringArray = intent.getStringArrayExtra("string-array");

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

08-21 05:14