gpt4 book ai didi

android - 在应用程序之间共享 Arraylist

转载 作者:太空狗 更新时间:2023-10-29 14:34:19 24 4
gpt4 key购买 nike

我有两个应用程序,我希望它们共享同一个数组列表。

我怎样才能达到那样的效果? Android 中有什么可以共享这样的偏好吗?

谢谢,

最佳答案

当您在 Activity 之间经过时,您可以发送信息

Bundle bundle = new Bundle();
bundle.putStringArrayList("ArrayPics",myArrayofPics);
Intent myIntent= new Intent(ActivityA.this, ActivityB.class);
myIntent.putExtras(bundle);
startActivity(myIntent);

这样你的 Activity B 就可以接收 ArrayList

您也可以在共享首选项中保存数据并读取您应用的每个 Activity

Shared Preferences

关于android - 在应用程序之间共享 Arraylist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3043941/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com