case DIALOG_TEXT_ENTRY:
   // This example shows how to add a custom layout to an AlertDialog
            LayoutInflater factory = LayoutInflater.from(this);
            final View textEntryView = factory.inflate(R.layout.edittext, null);
            return new AlertDialog.Builder(AlarmAdd.this)
             .setIcon(android.R.drawable.ic_menu_add)
                .setTitle(R.string.memo)
                .setView(textEntryView)
                .setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int whichButton) {
                     AlertDialog alert = (AlertDialog)dialog;
                     ListView lv = (ListView)alert.getListView();
                     View vv = (View)lv.getChildAt(0);
                     //EditText edittext = (EditText) vv.findViewById(R.id.EditText);
                     
                     //View v = (View)mList.getChildAt(4);
               //TextView text = (TextView) v.findViewById(R.id.Text2);
               
               //text.setText("");
                        /* User clicked OK so do some stuff */
                    }
                })
                .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int whichButton) {

                        /* User clicked cancel so do some stuff */
                    }
                })
                .create();

요래 조래 해봤는데 방법을 모르겠어서요......

다이알로그의 EditText에 적은 값을 가져와서 리스트뷰 텍스트에 뿌려줄려합니다

어떻게 처리해야 하나요?

제목 없음.JPG