Android 개발 메모

반투명 액티비티 띄우기

Dexx 2015. 9. 7. 13:48

Manifest 에서 theme부분 설정


[액티비티 배경을 투명하게]

android:theme="@android:style/Theme.Translucent"



[액티비티의 타이틀바 제거]

android:theme="@android:style/Theme.NoTitleBar"



[액티비티를 풀스크린으로 띄우기]

android:theme="@android:style/Theme.Fullscreen"


[전체 적용]

android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"