[Solved] How to Set ListView Adapter
try the following Adapter…… public class MyAdapter extends BaseAdapter { Context con; ArrayList<your type> mlist; RoomModel sched; public MyAdapter(Context con,ArrayList<your type> mlist ) { this.con=con; this.mlist=mlist; } @Override public int getCount() { // TODO Auto-generated method stub return mlist.length; } @Override public Object getItem(int position) { // TODO Auto-generated method stub return mlist[position]; } @Override … Read more