I have a AlertDialog of Multichoice Items.I want to have an EditText beside each item. How do i achieve this?
 third_card.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                final AlertDialog.Builder mBuilder = new AlertDialog.Builder(EnterRecordActivity.this);
                mBuilder.setTitle("Select Contributor");
                mBuilder.setMultiChoiceItems(listMembers, checkedMembers, new DialogInterface.OnMultiChoiceClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int position, boolean isChecked) {
                    }
                });
                mDialog = mBuilder.create();
                mDialog.show();
            }
        });
This is what i achieved till now with the following code
This is what i want. An edit text with each multichoice item


 
     
     
    