custom_dialog = new Dialog(this, android.R.style.Theme_Translucent_NoTitleBar);
RelativeLayout frame = (RelativeLayout) View.inflate(this, R.layout.custom_activity_dialog2, null);
costom_dialog.setContentView(frame);
 

 
현재 위와 같이 커스텀 다이얼로그를 메인 엑티비티 onCreate에서 만들어 놨습니다. 
 
custom_activity_dialog2.xml안에 이미지뷰가 하나 있는 상태이구요,
 
메인 엑티비티에서 버튼을 누를 경우 커스텀 다이얼로그가 뜨게 되어있습니다.
 
누르는 버튼에 따라서 커스텀 다이얼로그의 이미지뷰의 내용을 갱신하고 싶은데 갱신 자체가 안되네요, 
 
텅빈 이미지뷰만 계속나오네요 ^^;
 
안에 내용을 갱신하려면 어떻게 해야할까요;;?