Esempio n. 1
0
 public MessageRoomAdapter(
     Context c, List listOfConversations, ArrayList<String> listOfEventsImage) {
   this.context = c;
   this.listOfConversations = listOfConversations;
   this.listOfEventsImage = listOfEventsImage;
   isCustomer = true;
   loader = FileAndImageMethods.getImageLoader(c);
 }
Esempio n. 2
0
 public MessageRoomAdapter(Context c, List listOfConversations) {
   this.context = c;
   this.listOfConversations = listOfConversations;
   loader = FileAndImageMethods.getImageLoader(c);
 }