0

am doing chat app in which i want to display photo,adaptermodel,small icon for online status in listview

this gives error:

final List<AttendeeModel> attendeesList = getAttendeesList(
                    attendees, sender);

            ListView listView = (ListView) findViewById(R.id.listView);
listView.setAdapter(new ArrayAdapter<AttendeeModel>(this,android.R.layout.simple_list_item_2, attendeesList,R.layout.row, R.id.icon));

how simple i implement this..

thanks in advance...

Rasel
  • 15,499
  • 6
  • 40
  • 50
Krishnan
  • 15
  • 1
  • 3

1 Answers1

2

You need to use BaseAdapter for that.. example link link example

please see the example and if you cant understand then tell me

Miral Dhokiya
  • 1,720
  • 13
  • 26