1. 첫번째 방법 : Activity 에 적용
requestWindowFeature(Window.FEATURE_NO_TITLE);
protected void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
~~~~~~~
2. 두번째 방법 : 스타일 사용
styles.xml 에 아래 내용 추가
<style name="Theme.AppCompat.Light.NoActionBar" parent="@style/Theme.AppCompat.Light">
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item> <!-- For 2.x version -->
</style>
AndroidManifest.xml 에 android:theme 으로 적용
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
>
~~~~~~
'Android' 카테고리의 다른 글
안드로이드 android.os.NetworkOnMainThreadException 에러해결 (0) | 2015.05.08 |
---|---|
이클립스 Juno 에 SDK Manager가 어디있지? (0) | 2015.05.07 |
안드로이드 Multiple annotations found at this line ~~~ (0) | 2015.05.07 |
안드로이드 app_name is not translated in ~~~ (0) | 2015.05.07 |
안드로이드 네이버 밴드 공유 (0) | 2015.05.06 |