Skip to content

Instantly share code, notes, and snippets.

@ryokosuge
Last active August 29, 2015 14:04
Show Gist options
  • Save ryokosuge/7489aa06869d23b94266 to your computer and use it in GitHub Desktop.
Save ryokosuge/7489aa06869d23b94266 to your computer and use it in GitHub Desktop.
【Android】 ActionBarのTabBarのTextの色を変更する rel : http://blog.ryochin.xyz/archives/87
<!-- res/values/styles.xml -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- 省略 -->
<style name="ActionBar.TabText.Sample" parent="@style/Widget.AppCompat.Light.ActionBar.TabText">
<item name="android:textColor">@color/action_bar_tab_text</item>
</style>
<style name="ActionBar.Solid.Sample" parent="@style/Widget.AppCompat.Light.ActionBar.Solid">
<item name="actionBarTabTextStyle">@style/ActionBar.TabText.Qittaro</item>
</style>
<!-- 省略 -->
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment