退出时保存图像和字符串

时间:2013-04-07 17:08:38

标签: java android

当我从我的应用程序退出时,我想要保存图像列表和字符串列表(当我再次打开我的应用程序时,我可以操纵它们)

我没有找到如何实现它。

我发现我可以保存我的详细信息:

SharedPreferences myPrefs = getSharedPreferences("myPrefs", MODE_PRIVATE);

    SharedPreferences.Editor e = myPrefs.edit();
    e.putString("pathreturned", path);
    e.commit(); 

但是我没有找到如何保存列表(位图或字符串)或照片?

非常感谢

2 个答案:

答案 0 :(得分:0)

How to save images in Android?这不讨论SD卡,并建议您将文件作为BLOB保存到SQLite数据库。

或者,Save image to sdcard from drawble resource on Android突出显示如何将其保存到SD卡。

答案 1 :(得分:0)

你可以这样做,但你必须将图像保存在SD卡上,你可以使用它如下...

SharedPreferences mypref = PreferenceManager.getDefaultSharedPreferences(this);
Editor edit=mypref.edit();
edit.putString("imagepath","/sdcard/imagename.jpeg");
edit.commit();