Ejemplo n.º 1
0
 private void getMockListData() {
   notes = new ArrayList<Note>();
   for (int i = 0; i < 20; i++) {
     Note note = new Note();
     note.setDescription("Some test description text...");
     note.setDislikes(i);
     note.setLikes(20 - i);
     note.setFileName(
         "http://kinoman.triolan.com.ua/uploads/posts/2013-04/thumbs/1365855917_bezymyannyj.png");
     note.setFileNamePreview(
         "http://kinoman.triolan.com.ua/uploads/posts/2013-04/thumbs/1365855917_bezymyannyj.png");
     note.setId(i);
     note.setFileType(AppContext.PHOTO_FILE_TYPE);
     note.setIsCanSendComment(1);
     notes.add(note);
   }
 }