다이얼로그 타이틀(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
'안드로이드' 카테고리의 다른 글
[Android] Android Architecture Guide (Link) (0) | 2019.03.08 |
---|---|
[android]안드로이드 해시퀴 추출 & 카카오톡 연동 (0) | 2015.01.12 |
[android][error][facebook]Feed action request limit reached (0) | 2013.03.29 |
[Android][error]'Building workspace' has encountered a problem. Errors occurred during the build. (0) | 2012.12.27 |
[Android][error]requires unavailable shared library com.google.android.maps; failing! (0) | 2012.12.20 |