검색결과 리스트
안드로이드/소스에 해당되는 글 1건
- 2015.10.21 안드로이드 타이틀바 제거
글
안드로이드 타이틀바 제거
안드로이드/소스
2015. 10. 21. 14:42
안드로이드 상단 타이틀바 없애기
출처 : http://kwonsaw.tistory.com/127
프로젝트를 생성하면 기본적으로 상단타이틀에 프로젝트명이 붙어서 노출이 됩니다. 타이틀 없애는 방법입니다.
먼저 AndroidManifest.xml 을 열고 다음 볼드체로 되어있는 부분을 추가해 줍니다.
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar" >
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar" >
상단에 상태바까지 없애고 싶다면 Fullscreen을 붙여주면 됩니다.
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"