차근차근/Android

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

예쁜꽃이피었으면 2014. 10. 20. 15:00




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



http://arabiannight.tistory.com/180


한 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


=> Theme.Translucent.NoTitleBar 이렇게 쓰면 되요~

반응형