안드로이드 기본 배경화면에는 다음과 같이 위에 타이틀바가 존재한다.
상단바를 없애기 위해선 AndroidManifest.xml파일에서
android:theme="@style/AppTheme"
을
android:theme="@style/Theme.AppCompat.NoActionBar"
로 바꿔주면 된다.
- 바꿔준 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.testgoogle.sheetexample">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:networkSecurityConfig="@xml/network_security_config"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.NoActionBar"
tools:targetApi="n">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
|
cs |
짠! 아래와 같이 상단바가 없어진 깨끗한 화면이 보인다.