반응형

개요

 

이번에는 안드로이드 개발을 하다보면 풀스크린으로 나오게 하고 싶을 때가 있습니다.

그럴 경우 유용하게 쓰일 수 있는 타이블바 제거와 상태바 제거에 대해서 알아 보겠습니다.

 


타이틀바 제거

 

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>


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

    </style>

</resources>

 

안드로이드 Manifest.xml 파일에서 수정 하셔도 되지만 커스터 마이징 할 수 있도록 /res/values/style.xml 파일을 위와 같이 수정해 주시면 됩니다.

 


상태바 제거

 

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

    }

 

onCreate 밑에 이렇게 적어주시면 상태바도 제거 하 실 수 있습니다.!

 


 

 

반응형

+ Recent posts