Ejemplo n.º 1
0
  public boolean getMyListsFromDB() {
    OneTimeDBHelper oDBH = new OneTimeDBHelper(this);

    // add myPlantList from Shared Plants
    mPlantList.addAll(oDBH.getAllMyListInformation(this));

    Log.i("K", "the number of mylist (size) : " + mPlantList.size());

    oDBH.close();

    if (mPlantList.size() > 0) {
      return true;
    }
    return false;
  }