AlertDialog.Builder dialog = new AlertDialog.Builder(this);
dialog.setTitle("Title");
dialog.setView(textEntryView);
dialog.setMultiChoiceItems(...);
dialog.setPositiveButton(...);

textEntryView 부분이 어떻게해도 setMultiChoiceItems 아래로 들어갑니다.
setCustomTitle(textEntryView) 하면 위로 가능한데 이때는 focus가 들어가도 가상키보드가 실행되지 않습니다.

혹시 비슷한 문제를 해결하신 분 계시다면 조언 부탁드리겠습니다.
감사합니다.