Android:在ArrayList中保存值

时间:2015-02-11 15:01:33

标签: android arraylist save sharedpreferences

我想使用 SharedPreference ArrayList 中保存值。然后,我想从另一个类调用 ArrayList 中的值,但它没有保存。我怎样才能做到这一点?使用SharedPreferences?要保存文件?还是创建Sqlite?谢谢你的帮助。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    final Button saveButton = (Button)findViewById(R.id.button);
    final Button delButton = (Button)findViewById(R.id.delButton);
    final ListView listView = (ListView)findViewById(R.id.listView);
    final EditText editText = (EditText)findViewById(R.id.editText);
    final ArrayList<String> arrayList = new ArrayList<String>();

    SharedPreferences sharedPref = this.getPreferences(Activity.MODE_PRIVATE);
    SharedPreferences.Editor editor = this.getPreferences(Activity.MODE_PRIVATE).edit();
    editor.putString("numbers", arrayList.toString());
    editor.commit();

    String arrayString = sharedPref.getString("numbers", null);

    final ArrayAdapter<String> arrayAdapter;
    arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,arrayList);
    listView.setAdapter(arrayAdapter);

    saveButton.setOnClickListener(new View.OnClickListener()
    {

        public void onClick(View v)
        {
            String str = editText.getText().toString();
            Integer cout = listView.getCount()+ 1;
            String str1 = cout.toString().concat("."+str);
            arrayList.add(listView.getCount(), str1);

            arrayAdapter.notifyDataSetChanged();
            Toast.makeText(getApplicationContext(), "Data Saved", Toast.LENGTH_SHORT).show();
            editText.setText(" ");
        }
    });

    delButton.setOnClickListener(new View.OnClickListener()
    {

        public void onClick(View v)
        {
            arrayList.remove(arrayList.size()-1);
            arrayAdapter.notifyDataSetChanged();
        }
    });

}

3 个答案:

答案 0 :(得分:0)

我认为你不能这样做editor.putString("numbers", arrayList.toString());因为object.toString()没有将ArrayList转换为String它只是做了一些奇怪的东西,比如&#34; @ Object3223rw&#34;,看一下这篇文章而是Save ArrayList to SharedPreferences

答案 1 :(得分:0)

保存列表:

editor.putString("List", TextUtils.join(",", myList));

获取列表:

String serialized = sharedPref.getString("List", null);
myList = Arrays.asList(TextUtils.split(serialized, ","));

适用于List而不是ArrayList的观察,因为asList返回List。如果你有重复的字符串与set一起工作,Tofasio的答案就不起作用。

答案 2 :(得分:0)

我的理解是仅使用SharedPreference来保存简单的键值对(bool,float,int,long和string)而不是数据存储。如果需要保存更复杂的数据对象(包括列表和数组),则需要序列化/反序列化并保存在磁盘上。

http://developer.android.com/guide/topics/data/data-storage.html