안드로이드/Android AndroidManifest.xml android:theme 중복 사용 하기
한 Activity에 두개의 Style을 쓰고 싶다.
android:theme="@android:style/Theme.Translucent
android:theme="@android:style/Theme.NoTitleBa
허나 중복 사용이 안된다.
그래서 하난 Menifest 에서
android:theme="@android:style/Theme.Translucent" 를
하난 source에서
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
이렇게 하니 된다.
출처 : http://blog.naver.com/PostView.nhn?blogId=kyungseuk&logNo=70107446379
'Android > AndroidManifest' 카테고리의 다른 글
안드로이드/Android 최근 사용한 앱(홈키 롱클릭) 에서 제외 하기~! (12) | 2012.05.13 |
---|---|
안드로이드/Android screenOrientation (가로/세로 모드설정) 하기 (2) | 2012.04.18 |
안드로이드/Android 전체화면 사용하기 (Status bar, Title bar 숨기기) (3) | 2012.04.06 |