본문 바로가기
프로그래밍/Android

android res/style을 이용한 fullscreen 적용

by Mr-후 2018. 11. 22.
반응형


android res/style을 이용한 fullscreen 적용




뭐 별건 아닌데 아직 익숙하지 않아서 정리한다. 

화면의 상태바(status bar)을 안보이게 하려면 화면별로 스타일을 지정하면 된다. 

테마설정을 통해 간단하게 적용할 수 있는 방법은 아래와 같다.  parent=Theme.AppCompat.Light.DarkActionBar를 상속받아 스타일을 만들면 된다. 


 <style name="myThemeContacts" parent="Theme.AppCompat.Light.DarkActionBar">

<item name="windowNoTitle">true</item>

<item name="WindowActionBar">false</item>

<item name="android:windowFullscreen>true</item> 

</style>


Activity의 화면을 가로 또는 세로 방향으로 고정할 경우에는 <Activity>속성에 android:screenOrientation="landscape"  또는 android:screenOriention="portrait"로 지정해서 사용할 수 있다. 이렇게 설정된 방향은 사용자가 방향을 전환할 수 없게 된다. 



반응형