将Bundle对象保存到共享首选项中[重复]
Posted
技术标签:
【中文标题】将Bundle对象保存到共享首选项中[重复]【英文标题】:Saving Bundle object into shared preference [duplicate] 【发布时间】:2013-09-20 05:06:13 【问题描述】:我有 2 个活动
活动1
活动2
活动1:
Intent intent= new Intent(Activity1.this,Acivity2.class);
Bundle b=new Bundle();
b.putParcelableArrayList("actionArray", (ArrayList<? extends Parcelable>) AllListArray.get(0));
b.putParcelableArrayList("comedyArray", (ArrayList<? extends Parcelable>) AllListArray.get(1));
b.putParcelableArrayList("loveArray", (ArrayList<? extends Parcelable>) AllListArray.get(2));
b.putParcelableArrayList("classicsArray", (ArrayList<? extends Parcelable>) AllListArray.get(3));
b.putParcelableArrayList("familyArray", (ArrayList<? extends Parcelable>) AllListArray.get(4));
intent.putExtras(b);
startActivity(intent);
活动 2:
活动2:
public List<Movie> actionArray;
public List<Movie> comedyArray;
public List<Movie> loveArray;
public List<Movie> classicsArray;
public List<Movie> familyArray;
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
Bundle recdData = getIntent().getExtras();
if(recdData!=null)
actionArray=recdData.getParcelableArrayList("actionArray");
comedyArray=recdData.getParcelableArrayList("comedyArray");
loveArray=recdData.getParcelableArrayList("loveArray");
classicsArray=recdData.getParcelableArrayList("classicsArray");
familyArray=recdData.getParcelableArrayList("familyArray");
我的要求是将Bundle(recdData)
存储到Activity2 中的Sharedpreferences
中?
谁能帮帮我?
【问题讨论】:
首先至少在谷歌上搜索你的问题你会得到解决方案***.com/questions/13660889/… 另见***.com/questions/11903718/… 【参考方案1】:在您的 Activity2 中
public void addTask(Task t)
if (null == currentTasks)
currentTasks = new ArrayList<task>();
currentTasks.add(t);
//save the task list to preference
SharedPreferences prefs = getSharedPreferences(SHARED_PREFS_FILE, Context.MODE_PRIVATE);
Editor editor = prefs.edit();
try
editor.putString(TASKS, ObjectSerializer.serialize(currentTasks));
catch (IOException e)
e.printStackTrace();
editor.commit();
同样,我们必须在 onCreate() 方法中从首选项中检索任务列表:
public void onCreate()
super.onCreate();
if (null == currentTasks)
currentTasks = new ArrayList<task>();
// load tasks from preference
SharedPreferences prefs = getSharedPreferences(SHARED_PREFS_FILE, Context.MODE_PRIVATE);
try
currentTasks = (ArrayList<task>) ObjectSerializer.deserialize(prefs.getString(TASKS, ObjectSerializer.serialize(new ArrayList<task>())));
catch (IOException e)
e.printStackTrace();
catch (ClassNotFoundException e)
e.printStackTrace();
您可以从 Apache Pig 项目 ObjectSerializer.java 中获取 ObjectSerializer 类
【讨论】:
对不起,我不清楚答案,你能描述一下吗?【参考方案2】:preferences = mActivity.getSharedPreferences(
SharePreference_demo, Context.MODE_PRIVATE);
Map<String, String> demoarraylist= new HashMap<String, String>();
demoarraylist.put("actionArray", "action");
demoarraylist.put("comedyArray", "comedy");
demoarraylist.put("lovearray", "love");
demoarraylist.put("classicArray", "classic");
demoarraylist.put("familyArray", "family");
SharedPreferences.Editor editor = preferences.edit();
for (Entry<String, String> entry : demoarraylist.entrySet())
editor.putString(entry.getKey(), entry.getValue());
editor.commit();
把上面的代码放在你的第一个活动中。
下面的代码放在你的第二个活动中。
Map<String, String> demoarraylist= new HashMap<String, String>();
SharedPreferences preferences = activity.getSharedPreferences(
SharePreference_demo, Context.MODE_PRIVATE);
for (Entry<String, ?> entry : preferences.getAll().entrySet())
demoarraylist.put(entry.getKey(), entry.getValue().toString());
Iterator myVeryOwnIterator = demoarraylist.keySet().iterator();
while (myVeryOwnIterator.hasNext())
String key = (String) myVeryOwnIterator.next();
String value = (String) MapListUserStatus.get(key);
【讨论】:
我的 ArrayList 是 CustomObject ArraList,请参阅我编辑的问题【参考方案3】:Map<String, String> MapListUserStatus = new HashMap<String, String>();
SharedPreferences.Editor editor = preferences.edit();
for (Entry<String, String> entry : MapListUserStatus.entrySet())
editor.putString(entry.getKey(), entry.getValue());
使用 HashMap() 将您的 ArrayListData 存储到 sharedprefernces 中。
检索 sharedPreferences 数据:
MapListUserStatus = new HashMap<String, String>();
SharedPreferences preferences = conductpd.getSharedPreferences(
SharePreference_messages_history, Context.MODE_PRIVATE);
for (Entry<String, ?> entry : preferences.getAll().entrySet())
MapListUserStatus.put(entry.getKey(), entry.getValue().toString());
我希望它对你有用..如果有任何疑问请告诉我。
【讨论】:
对不起,我是编程新手,根据我的问题,你能编辑你的答案吗? @dipali 在上一个答案中发布您的编辑以上是关于将Bundle对象保存到共享首选项中[重复]的主要内容,如果未能解决你的问题,请参考以下文章
如何使用android中的共享首选项将数据保存在editText中[重复]