Exemplo n.º 1
0
 /**
  * 得到的为当前时间点以前的【包含今天】笑话
  *
  * @param offset
  * @param limit
  * @return
  */
 public List<DailyJoke> getAllBeforeNow(int offset, int limit) {
   try {
     return mDailyJokeDAO.getAllBeforeNow(offset, limit);
   } catch (Exception e) {
     e.toString();
   }
   return null;
 }