在Android开发中,要使数组在整个Android生命周期中都可访问,可以通过以下几种方式实现:
示例代码:
public class MyApplication extends Application {
public static int[] myArray;
@Override
public void onCreate() {
super.onCreate();
// 初始化数组
myArray = new int[]{1, 2, 3, 4, 5};
}
}
在其他Activity或Fragment中,可以通过MyApplication.myArray
来访问该数组。
发送方Activity示例代码:
int[] myArray = new int[]{1, 2, 3, 4, 5};
Intent intent = new Intent(this, ReceiverActivity.class);
intent.putExtra("myArray", myArray);
startActivity(intent);
接收方Activity示例代码:
int[] receivedArray = getIntent().getIntArrayExtra("myArray");
存储数组数据示例代码:
int[] myArray = new int[]{1, 2, 3, 4, 5};
SharedPreferences sharedPreferences = getSharedPreferences("MyPrefs", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putInt("arraySize", myArray.length);
for (int i = 0; i < myArray.length; i++) {
editor.putInt("arrayValue_" + i, myArray[i]);
}
editor.apply();
获取数组数据示例代码:
SharedPreferences sharedPreferences = getSharedPreferences("MyPrefs", Context.MODE_PRIVATE);
int arraySize = sharedPreferences.getInt("arraySize", 0);
int[] retrievedArray = new int[arraySize];
for (int i = 0; i < arraySize; i++) {
retrievedArray[i] = sharedPreferences.getInt("arrayValue_" + i, 0);
}
通过上述方法,可以在整个Android生命周期中保持数组的可访问性,以满足应用程序的需求。
领取专属 10元无门槛券
手把手带您无忧上云