현재노트
[안드로이드/android] 눈에 거슬리는 Titlebar 제거하자! 본문
본 포스팅은 Window7, Android Studio 2.3.3 기준으로 작성되었습니다.
본격적으로 새 프로젝트를 만들고
많은 이들이 거슬려하는
TitleBar !!!
를 제거하는 시간을 가져보겠습니다.
바로 빨간색으로 네모친 저 친구인데요~
제거하는 방법은 아주 간단합니다.
AndroidManifest.xml 로 가셔서 코드 하나만 수정하면 제거완료!
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.administrator.sjyp">
<uses-permission android:name="android.permission.INTERNET" />
<application
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/AppTheme">
<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>
위 AndroidManifest 코드에서 수정할 부분은
android:theme="@style/AppTheme">
바로 이부분입니다.
위 코드를 아래 코드로 수정하시면
android:theme="@style/Theme.AppCompat.NoActionBar">
Titlebar가 제거됩니다.
이상 본 포스팅을 마치겠습니다.
'android' 카테고리의 다른 글
[안드로이드/android] xml파일에서 한글깨짐을 해결해보자! (0) | 2017.10.25 |
---|---|
[안드로이드/android] auto import 자동임포트에 대해서 알아보자! (0) | 2017.10.24 |
[안드로이드/Android] 안드로이드 1분이면 페이스북 로그인 연동 (1) | 2017.03.14 |
Comments