반응형

안드로이드 어플 상단바 없애기 or 전체 화면 모드

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

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

<activity

            android:name=".WebViewActivity"

            android:label="@string/app_name"

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

             >

       <!--  android:theme="@android:style/Theme.NoTitleBar" -->

       <!-- 타이틀바만 없애는것과 둘다 없애는것. -->

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />


                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

 

 

ps. 저만 보려고 스크랩을 하던거라 위치를 안적어놨네요

위 옵션 추가하는 파일은 AndroidManifest.xml 파일에서 추가하시면 됩니다.

반응형

+ Recent posts