팝업으로 띄우는 액티비티 클래스 내에 다음 코드를 추가하면 끝.
protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first) {
super.onApplyThemeResource(theme, resid, first);
theme.applyStyle(style.Theme_Panel, true);
}
또는
getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
'공부 > Android' 카테고리의 다른 글
안드로이드 SharedPreference (0) | 2013.07.18 |
---|---|
안드로이드 키보드 Devices Docs. (0) | 2013.07.18 |
안드로이드 TextView 폰트 바꾸기 (0) | 2013.07.17 |
항상 최상위에 있는 액티비티, 팝업 만들기 (0) | 2013.07.17 |
안드로이드 해상도(dpi, dip, px) , dip px 변환 (0) | 2013.07.17 |