본문 바로가기

Programming/과거포스팅

delete Title

안드로이드의 타이틀을 없애는 방법은 AndroidManifest.xml에서 조금만 수정해주면 됩니다.
<application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.NoTitleBar" > -- 이부분만 다음과 같이 변경해주면 됩니다.

혹 안테나영역 까지 삭제하고 싶으면 위의 부분에 

android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 와 같이 적어주면 됩니다.