Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 안드로이드 개발 강좌
- 구글 안드로이드
- 안드로이드 개발
- 안드로이드폰
- 인기있는 블로그 만들기
- 안드로이드 바탕화면
- 영어
- SKY 시리우스
- 안드로이드
- 하루 한마디 영어
- sky 시리우스폰
- 안드로이드2.0개발
- 안드로이드 개발 2.0
- 아이폰 배경화면
- 안드로이드 배경화면
- 하루한마디영어
- 구글안드로이드
- objective-c
- 스마트폰 배경화면
- 아이폰 바탕화면
- 스카이 안드로이드폰 시리우스
- Form Stuff
- android
- 구글 안드로이드 개발
- 안드로이드 2.0 개발
- 스카이 안드로이드폰 시리우스 K양 동영상
- MapView
- 안드로이드 개발 2.0 강좌
- 안드로이드개발
- 안드로이드2.0
Archives
- Today
- Total
moozi
ActionBar Title 색상변경 본문
style.xml
<resources>
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="android:Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">#800000</item>
<item name="android:titleTextStyle">@style/TitleColor</item>
</style>
<style name="TitleColor" parent="android:TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">#000099</item>
</style>
</resources>
또는
ActionBar actionbar = getSupportActionBar();
actionbar.setTitle(Html.fromHtml("<font color='#ff0000'>ActionBarTitle </font>"));
'TIS_2017 > 응용sw_1기' 카테고리의 다른 글
ckeditor활용하기 (0) | 2017.04.26 |
---|---|
네이밍룰 (0) | 2017.04.26 |
전자정부프레임워크 관련 자료 (0) | 2017.04.21 |
4/20 BoardExample01 Final (0) | 2017.04.21 |
4/21 boardExample01 (0) | 2017.04.21 |
Comments