안드로이드/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 이렇게 쓰면 되요~
반응형
'차근차근 > Android' 카테고리의 다른 글
안드로이드 웹뷰 쿠키저장 (0) | 2014.10.27 |
---|---|
현재 선택한 탭 다시 호출 (0) | 2014.10.23 |
안드로이드 백그라운드 투명 (0) | 2014.10.20 |
액티비티 시작 후 키보드 감추기 (0) | 2014.10.17 |
사용자 정의 메뉴 숨기기(??), 보이기(???) (0) | 2014.10.17 |