安卓连个页面之间如何传递String数组,并给出实例代码
时间: 2024-05-14 19:17:01 浏览: 126
可以使用Intent来传递String数组,具体实现如下:
在发送页面中:
```java
String[] data = {"data1", "data2", "data3"};
Intent intent = new Intent(SenderActivity.this, ReceiverActivity.class);
intent.putExtra("data", data);
startActivity(intent);
```
在接收页面中:
```java
String[] data = getIntent().getStringArrayExtra("data");
```
这样就可以在两个页面之间传递String数组了。
注:SenderActivity为发送页面,ReceiverActivity为接收页面。
相关问题
Android 存string数组
在 Android 中,你可以在 strings.xml 文件中定义一个 string-array 元素来存储一个字符串数组。以下是一个示例:
在 strings.xml 文件中添加以下代码:
```xml
<string-array name="colors">
<item>Red</item>
<item>Green</item>
<item>Blue</item>
</string-array>
```
然后在代码中,你可以通过以下方式获取该数组:
```java
String[] colors = getResources().getStringArray(R.array.colors);
```
其中,R.array.colors 是在 R.java 文件中自动生成的一个整数常量,它引用了定义在 strings.xml 文件中的字符串数组。通过 getResources() 方法获取到 Resources 实例,然后调用 getStringArray() 方法即可获取该数组。
Android getSharedPreferences 存string数组
在 Android 中,你可以使用 SharedPreferences 存储一个字符串数组。下面是一个示例:
```java
// 获取 SharedPreferences 实例
SharedPreferences sharedPreferences = getSharedPreferences("my_prefs", Context.MODE_PRIVATE);
// 创建一个字符串数组
String[] colors = {"Red", "Green", "Blue"};
// 将字符串数组转换为以逗号分隔的字符串
String colorsString = TextUtils.join(",", colors);
// 将字符串数组存储到 SharedPreferences 中
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("colors", colorsString);
editor.apply();
```
在上面的代码中,我们首先获取了一个 SharedPreferences 实例,并将其命名为 "my_prefs"。然后,我们创建了一个字符串数组 colors,将其转换为以逗号分隔的字符串 colorsString,并将其存储到 SharedPreferences 中。在存储时,我们使用了 SharedPreferences.Editor 的 putString() 方法,并将键名设置为 "colors"。
要获取存储的字符串数组,可以使用以下代码:
```java
// 获取 SharedPreferences 实例
SharedPreferences sharedPreferences = getSharedPreferences("my_prefs", Context.MODE_PRIVATE);
// 从 SharedPreferences 中获取存储的字符串数组
String colorsString = sharedPreferences.getString("colors", "");
String[] colors = colorsString.split(",");
// 打印字符串数组
for (String color : colors) {
Log.d("TAG", color);
}
```
在上面的代码中,我们首先获取了一个 SharedPreferences 实例,并将其命名为 "my_prefs"。然后,我们从 SharedPreferences 中获取存储的字符串数组,使用了 SharedPreferences 的 getString() 方法,并将键名设置为 "colors"。获取到字符串数组后,我们使用 String 的 split() 方法将其拆分为一个字符串数组 colors,并打印出每个元素。
阅读全文