안드로이드/개발관련(Kotlin)

안드로이드 타이틀바 없애는법

닉네임못짓는사람 2023. 2. 28. 00:07
반응형

안드로이드 앱을 만들면서 앱 위에 있는 타이틀 바가 거슬릴 때가 있다.

이런 타이틀바를 안드로이드 스튜디오에서 없애는 방법에 대해서 알아보자.

안드로이드 스튜디오의 Manifast파일을 열어보자

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.myproject.saftyalarm">

    <application
        android:name=".App"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.SaftyAlarm">
        <activity android:name=".LoadingActivity">
            <intent-filter>
                <action android:name="android.intent.action.Main" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

그러면 이런 식으로 되어있는데

저 중에서 androud:theme="@style/Theme.Exam" 이라고 되어있는 부분을

android:theme="@style/theme.AppCompat.NoActionBar"라고 바꿔주면 된다.

 

 

이렇게 타이틀바가 없어진걸 볼 수 있다.

반응형