I am trying to make a custom dialog with listview which is going to contain checkboxes and textviews and i just couldnt find a reasonable tutorial to do it , any help or hints w
ListView myList = new ListView(Activity.this); myList.setAdapter(adapter); AlertDialog.Builder builder = new AlertDialog.Builder(Activity.this); builder.setView(myList); Dialog d = builder.create(); d.show();
you can specify the textviews and checkboxes and whatever else in the adapter.