public xxx adb(String aaa){

string vv = aaa;

AlertDialog.Builder Al_dl = null;

       Al_dl = new AlertDialog.Builder(Share.this); //AlertDialog를 만듭니다.

       Al_dl.setTitle("aaaa?");       

                Al_dl.setPositiveButton("확인", new DialogInterface.OnClickListener() { 
                               public void onClick(DialogInterface dialog, int which) {
                              
                               여기서 작업 할 때 이 함수를 호출 할 때 String aaa값을 매개변수로 호출하였는데 이 값을 AlertDialog 에서는
                                이 값을 못 받아 오나요......aaa 값을 가지고 이 onClick 부분에서 작업을 해야 하거든요....
                                또, 다이얼로그 끼리는 값을 주고 못받나요????
                                 빠른 답변 부탁드립니다.

}

.....................................