본문 바로가기

Android/AndroidManifest

안드로이드/Android AndroidManifest.xml android:theme 중복 사용 하기

안드로이드/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