Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
Activity를 Dialog로 띄우기 본문
AndroidManifest.xml 설정
<activity android:name=".DialogTest"
android:theme="@android:style/Theme.Dialog">
</activity>
타이틀 영역 없애기
requestWindowFeature(Window.FEATURE_NO_TITLE);
Dialog 배경을 투명하게 처리
protected void onApplyThemeResource(Resources.Theme theme, int resid, boolean first){
super.onApplyThemeResource(theme,resid,first);
theme.applyStyle(style.Theme_Panel,true);
}
반응형
'IT > Android' 카테고리의 다른 글
안드로이드 휴대폰에서 사용자 휴대폰 번호 구하기 (0) | 2016.03.19 |
---|---|
안드로이드에서 방향 전환시 화면을 다시 그리지 않게 처리하기 (0) | 2016.03.19 |
.android 경로 이동하기 (0) | 2016.03.19 |
TextView의 maxLines,singleLine, ellipsize 속성 사용하기 (0) | 2016.03.18 |
WebView에서 loadUrl 사용시 로컬 파일 호출하기 (0) | 2016.03.18 |
Comments