안 드 로 이 드 화면의 title bar 제거 (세 가지 방안)

안 드 로 이 드 개발 을 진행 할 때 모든 Activity 는 기본적으로 하나의 title bar 를 가지 고 프로그램 이름 을 표시 합 니 다. 가끔 은 화면의 디 스 플레이 영역 을 확대 하기 위해 이 title bar 를 제거 해 야 합 니 다. 화면의 title bar 를 제거 하 는 세 가지 방법 이 있 습 니 다.
첫 번 째 방법 은 코드 에서 title bar 를 제거 하 는 것 입 니 다.
Activity 의 onCreate 에 다음 코드 를 추가 합 니 다.
this.requestWindowFeature(Window.FEATURE_NO_TITLE);

 그러나 이 방법 을 사용 하 는 것 은 Activity 가 표 시 될 때 에 도 title bar 가 나타 나 고 이 를 제거 하 는 것 으로 사용자 체험 이 좋 지 않다.
두 번 째 방법 은 style 프로필 을 사용 하 는 것 입 니 다.
절 차 는 다음 과 같다.
1. res / values 폴 더 아래 xml 파일 을 만 듭 니 다. 이름 은 main Style. xml 입 니 다. 내용 은 다음 과 같 습 니 다.
<?xml version="1.0"encoding="utf-8"?>
<resources>
    <style name="NoTitle"parent="android:Theme">
        <itemname="android:windowNoTitle">true</item>
    </style>
</resources>

2. 그리고 AndroidManifest. xml 에서 title bar 의 activities 노드 에 스타일 속성 을 추가 해 야 합 니 다.
   <activity android:name=".view.AutoTaskDemo" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation|locale" android:theme="@style/NoTitle">

 세 번 째 방법 은 AndroidManifest. xml 에서 직접 수정 하 는 것 입 니 다.
title bar 를 제거 해 야 할 activities 노드 에 스타일 속성 을 추가 합 니 다. 코드 는 다음 과 같 습 니 다.
<activity android:name=".view.SettingActivity" android:configChanges="keyboardHidden|orientation" android:theme="@android:style/Theme.NoTitleBar"/>

또한 AndroidManifest. xml 파일 의 application 노드 에서 수정 할 수 있 습 니 다. 모든 activity 에 유효 합 니 다. 코드 는 다음 과 같 습 니 다.
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">  

좋은 웹페이지 즐겨찾기