-
타이틀바 상태바 지우기프로그래밍/android 2016. 6. 20. 17:36
타이틀바 상태바 지우기
androidManifest.xml 에서 간단한 수정만으로 쉽게 바꾸기
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xxx.xxx.xxx"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
<activity android:label="@string/app_name" android:name="Seoulnavi"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
다음과 같이 activity 태그안에 삽입합니다.
타이틀바 지울 경우
android:theme="@android:style/Theme.NoTitleBar"
타이틀바 상태바 모두 지울경우
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
'프로그래밍 > android' 카테고리의 다른 글
Android ZXing을 이용한 QR코드 인식하기 (0) 2016.06.20