다이얼로그 타이틀(Title)과 테두리(OutLine)없애기



Dialog dialog = new Dialog(getActivity());


// setContentView() 앞에 사용할 것!!!

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));


dialog.setContentView(view);


dialog.show();



참조: http://blog.naver.com/ryutuna/100160664487

+ Recent posts