actionbarsherlock アクション バーのテキスト スタイル/フォント サイズ/フォントの色を変更したいと思います。以下に私の試行を示しますが、「error: Error: No resource found that matches the given name (at 'android:textColor' with value '@color/black').
」と「error: Error: No resource found that matches the given name (at 'android:textSize' with value '@dimen/20dp').
」というエラーが表示されるだけです。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="ABSTheme" parent="Theme.Sherlock.Light.ForceOverflow">
<item name="android:actionBarStyle">@style/ABSTheme.ActionBar</item>
<item name="actionBarStyle">@style/ABSTheme.ActionBar</item>
</style>
<style name="ABSTheme.ActionBar" parent="Widget.Sherlock.Light.ActionBar.Solid">
<item name="android:displayOptions">showHome|useLogo</item>
<item name="displayOptions">showHome|useLogo</item>
<item name="titleTextStyle">@style/ABSTheme.ActionBar.TextAppearance</item>
</style>
<style name="ABSTheme.ActionBar.TextAppearance" parent="@style/TextAppearance.Sherlock.Widget.ActionBar.Menu">
<item name="android:textSize">@dimen/20dp</item>
<item name="android:textColor">@color/black</item>
</style>
</resources>