Theme.Holo 지원 이후에 사용이 가능하다.
Android Support Library에서는 사용 할 수 없다.
1. 먼저 styles.xml에 아래의 style을 추가한다.
<!-- the theme applied to the application or activity -->
<style name="NeoActionBarTheme"
parent="@android:style/Theme.Holo">
<item name="android:actionBarTabStyle">@style/NeoActionBarTabs</item>
</style>
<!-- ActionBar tabs styles -->
<style name="NeoActionBarTabs"
parent="@android:style/Widget.Holo.ActionBar.TabView">
<!-- tab indicator -->
<item name="android:background">@drawable/calendar_tab_menu_indicator</item>
</style>
2. AndroidManifest.xml에 Activity에 추가한 style을 적용한다.
<activity
android:theme="@style/NeoActionBarTheme"
android:name="com.dhna.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
'안드로이드' 카테고리의 다른 글
HTTPS 통신하기 (0) | 2014.01.25 |
---|---|
버튼 패딩 제거하기 (0) | 2014.01.08 |
구글 플러그인 설치하기 (Google Plugin for Eclipse) (0) | 2014.01.07 |
[안드로이드] ImageCache 사용 중, 이미지의 크기가 변하는 현상 (0) | 2013.12.13 |
[안드로이드] RenderScript 빌드 오류 문제 해결 (0) | 2013.11.12 |
[안드로이드] InputStream을 닫는데 왜 오래 걸릴까? (0) | 2013.04.19 |
[안드로이드] Dialog.dismiss()를 할 때, java.lang.IllegalArgumentException: View not attached to window manager 예외 회피하기 (2) | 2013.03.08 |
[안드로이드] Collection을 사용 할 때 ConcurrentModificationException을 피하는 방법 (0) | 2013.03.06 |
[안드로이드] APK 파일 SIGN 하기 (0) | 2012.10.29 |
안드로이드 ListView와 Thread를 사용할 때 동기화 오류 (IllegalStateException) (0) | 2012.10.08 |