保存ArrayList <map <string,string =“”>&gt;到SQLite数据库?</map <string,>

时间:2013-07-23 10:53:51

标签: android android-listview android-sqlite

我有Fragment名为HistoryFragment,其中包含ListViewListView的项目由另一个名为DataModel的类添加。我想要做的是在项目添加到列表时保存列表。 (目前,我列表中的视图仅为TextView s,但后来我希望向它们添加图像,并且有多行等等,因此这些也需要保存。我的列表是:ArrayList<Map<String, String>>,名为mPlanetList

我认为保存到SQLiteDataBase是解决方案,但即使在阅读了多个答案/教程后看起来也很复杂。

我看过的一些网站:

http://www.vogella.com/articles/AndroidSQLite/
http://developer.android.com/guide/topics/data/data-storage.html#db
http://stackoverflow.com/q/5482402/2442638
http://stackoverflow.com/q/3142285/2442638

这个“问题”中有很多问题,但我的主要问题分为两部分:

a)DataBase是正确的解决方案吗?

- &GT;如果'是' - &gt; b)制作一个简单的方法是什么?我宁愿不使用JSON / GSON

- &GT;如果'不' - &gt; c)我应该使用什么? SharedPreferences

假设DataBase是正确的解决方案,我想我需要序列化我的arraylist或者可能使用StringSet - 我不知道怎么做,因为我有这样的arraylist:ArrayList<Map<String, String>>而不是没有地图对象的arraylist。

此外,我尝试从我的DataModel类访问我的数据库(因为这是我将项目添加到列表中的位置),但我无法使其工作。

我已添加了当前的代码 - 数据库的工作尚未完成,但我仍然坚持下一步应该做的事情。

这是我的HistoryFragment课程:

// Remove imports

public class HistoryFragment extends FragmentBase implements OnItemAddedHandler {
// FragmentBase is just another class which extends Fragment and the moment.

    ListView lv;
    SimpleAdapter simpleAdpt;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        View view = inflater.inflate(R.layout.history, container, false);

        ListView lv = (ListView) view.findViewById(R.id.listView);


        List<Map<String, String>> planetsList = DataModel.getInstance()
                .getPlanetList();
        simpleAdpt = new SimpleAdapter(getActivity(), planetsList,
                android.R.layout.simple_list_item_1, new String[] { "planet" },
                new int[] { android.R.id.text1 });

        lv.setAdapter(simpleAdpt);
        lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {

            public void onItemClick(AdapterView<?> parentAdapter, View view,
                    int position, long id) {


                TextView clickedView = (TextView) view;

        // Display a dialog
            }
        });

        return view;
    }

    @Override
    public void onDetach() {
        super.onDetach();
        DataModel.getInstance().setOnItemAddedHandler(null);
    }

    @Override
    public void onItemAdded(Object data) {
        simpleAdpt.notifyDataSetChanged();
        lv.scrollTo(0, 0); // Scrolls to top of list
    }

    @Override
    public void onStart() {
        super.onStart();
        DataModel.getInstance().setOnItemAddedHandler(this);
    }

}

这是我的DataModel

public class DataModel {

    private List<Map<String, String>> mPlanetsList = new ArrayList<Map<String, String>>();

    private static DataModel instance;
    private static OnItemAddedHandler mOnItemAddHandler;

    private DataModel() {
        initList();
    }

    public static DataModel getInstance() {
        if (null == instance) {
            instance = new DataModel();
        }
        return instance;
    }

    private void initList() { 
// Here is where I want to load the saved listitems.
    }

    public List<Map<String, String>> getPlanetList() {
        return mPlanetsList;
    }

    private HashMap<String, String> createPlanet(String key, String name) {

        HashMap<String, String> planet = new HashMap<String, String>();
        planet.put(key, name);
        return planet;
    }

    public void setOnItemAddedHandler(OnItemAddedHandler handler) {
        mOnItemAddHandler = handler;
    }

    public void addItem(Object data) { // Save stuff here?
        Bundle data1 = new Bundle();
        String string = ((Bundle) data).getString("keyTitle");
        mPlanetsList.add(0, createPlanet("planet", string)); 

 // This is where I want to save my items to the DataBase
    HistoryDataBase.getInstance();  //Adding .getWritableDatabase()  gives me a nullpointerexception.

// I don't understand what else I need to do here to add my mPlanetList to the DataBase

        if (null != mOnItemAddHandler) {
            mOnItemAddHandler.onItemAdded(data1);
        }
    }
}

最后这是我的数据库:

public class HistoryDataBase extends SQLiteOpenHelper {

private static HistoryDataBase instance;

public static final String TABLE_COMMENTS = "comments";
  public static final String COLUMN_ID = "_id";
  public static final String COLUMN_COMMENT = "comment";

  private static final String DATABASE_NAME = "commments.db";
  private static final int DATABASE_VERSION = 1;

  // Database creation sql statement
  private static final String DATABASE_CREATE = "create table "
      + TABLE_COMMENTS + "(" + COLUMN_ID
      + " KEY, " + COLUMN_COMMENT
      + " text not null);";

static Context c;

HistoryDataBase(Context context) {
    super(c, DATABASE_NAME, null, DATABASE_VERSION);
}

@Override
public void onCreate(SQLiteDatabase db) {
    db.execSQL(DATABASE_CREATE);

}

@Override
public void onUpgrade(SQLiteDatabase arg0, int arg1, int arg2) {
    // TODO Auto-generated method stub

}

public static HistoryDataBase getInstance() {
    if (null == instance) {

        instance = new HistoryDataBase(c);
    }
    return instance;
}
}

非常基本:我想永久保存我的列表项,并能够进行检索,编辑和删除。

感谢您抽出宝贵时间阅读本文。如果需要澄清,请说。

2 个答案:

答案 0 :(得分:7)

SQLiteDataBase是正确的解决方案。

您可以将每个项目的数据保存到数据库中。如果您想将整数或其他简单类型数据放入散列映射,则每个项目数据中将有HashMap<String, Object>而不是HashMap<String, String>

然后,当您要将HashMap保存到数据库中时,可以将json序列化为 // you can put multiple data into this hashmap HashMap<String, Object> dataHashMap = new HashMap<String, Object>(); ContentValues values = new ContentValues(); values.put("data", new JSONObject(dataHashMap).toString()); db.insert(TABLE_NAME, COL_ID, values);

unserialize

从数据库中获取序列化数据后,您可以执行 int rawDataIndex = 6; String rawData = cursor.getString(rawDataIndex); HashMap<String, Object> dataHashMap = new HashMap<String, Object>(); try { JSONObject json = new JSONObject(rawData); JSONArray names = json.names(); for (int i = 0; i < names.length(); i++) { String key = names.getString(i); dataHashMap.put(key, json.opt(key)); } } catch (JSONException e) { e.printStackTrace(); }

{{1}}

答案 1 :(得分:0)

尝试使用JSONArray的结构,其中每个元素都是JSONObject。

JSON具有默认构造函数,用于将数据转换为字符串并从字符串解析。

因此,您需要的是数据库中的TEXT字段。