使用SharedPreferences保存和加载listview数据

时间:2016-05-20 04:13:31

标签: android listview sharedpreferences

我正在尝试使用SharedPreferences保存我的listview项目。我有点设法在列表视图中保存和加载项目。我可以添加项目,但是当我关闭它后加载listview时,只保存最新添加的项目。任何帮助将不胜感激,谢谢!

private EditText editTxt;
private ListView list;
private ArrayAdapter<String> adapter;
private ArrayList<String> arrayList;
private String item;

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    editTxt = (EditText) findViewById(R.id.editText);
    list = (ListView) findViewById(R.id.List);
    arrayList = new ArrayList<String>();

    adapter = new ArrayAdapter<String>(getApplicationContext(),R.layout.list_item, arrayList);
    list.setAdapter(adapter);
    //load data here
    LoadPreferences();
    list.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

    FloatingActionButton add = (FloatingActionButton) findViewById(R.id.add);
    add.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            if (editTxt.getText().toString().length() == 0) {
                Toast.makeText(MainActivity.this, "Please enter something into the text box",
                        Toast.LENGTH_SHORT).show();
            } else {
                item = editTxt.getText().toString();
                arrayList.add(item);
                adapter.notifyDataSetChanged();
                //save data here
                SavePreferences("List", item);
                editTxt.setText("");
            }
        }
    });
}

//save listview data
protected void SavePreferences(String key, String value) {
    // TODO Auto-generated method stub
    SharedPreferences data = PreferenceManager.getDefaultSharedPreferences(this);
    SharedPreferences.Editor editor = data.edit();
    editor.putString(key, value);
    editor.commit();
}
//load listview data
protected void LoadPreferences(){
    SharedPreferences data = PreferenceManager.getDefaultSharedPreferences(this);
    String dataSet = data.getString("List", "Add an item...");

    adapter.add(dataSet);
    adapter.notifyDataSetChanged();
}

2 个答案:

答案 0 :(得分:3)

您尝试将所有点击的项目保存在一个SharedPreferences存储库中。尝试在将值保存到SharedPreferences时更改名称 - 例如SavePreferences(item.getName(),item);其中item.getName方法返回此项的唯一名称。但这是一个糟糕的方式。好方法是在数据库中存储多个数据。

答案 1 :(得分:1)

这种情况正在发生,因为每次用户从列表中选择一个项目时,存储在首选项中的上一个项目将被新项目替换,因为每个项目都使用相同的密钥存储。

您可以尝试这样的事情

//save listview data
protected void SavePreferences(String key, String value) {
    // TODO Auto-generated method stub
    SharedPreferences data = PreferenceManager.getDefaultSharedPreferences(this);

    String s=data.getString(key,""); //to fetch previous stored values

     s=s+"!"+value;   //to add new value to previous one

   data.edit().putString(key,s).commit();
}


//load listview data
protected void LoadPreferences(){
    SharedPreferences data = PreferenceManager.getDefaultSharedPreferences(this);
    String dataSet = data.getString("List", "Add an item...");

     if(dataSet.contains("!")){ //to check if previous items are there or not

     String rows[]=dataSet.split("!"); //to get individual rows of list

      for(int i=0;i<rows.length;i++){
       adapter.add(rows[i);   //to add each value to the list
       adapter.notifyDataSetChanged();
     }
 } else{
        adapter.add(dataSet);   
       adapter.notifyDataSetChanged();
  }
}