0

アクションバーとタブビューのカスタマイズについて助けが必要です。Sherlock ActionBar lib を使用し、カスタム タブ/アクションバー スタイルを Theme.Sherlock をアクティビティの親としてバインドしようとしています。しかし、それは機能しません。エラーはありませんが、何も変更されていません。私は何を間違っていますか?

これが私のスタイルです:(少なくとも背景色を変更してください):

<style name="AppBaseTheme" parent="Theme.Sherlock">
    <!--
        Theme customizations available in newer API levels can go in
        res/values-vXX/styles.xml, while customizations related to
        backward-compatibility can go here.
    -->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">

    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    <item name="android:actionBarStyle">@style/MyActionBar</item>
    <item name="actionBarStyle">@style/MyActionBar</item>
    <item name="android:actionBarTabBarStyle">@style/MyActionBarTabBar</item>
    <item name="actionBarTabBarStyle">@style/MyActionBarTabBar</item>
    <item name="android:actionBarTabStyle">@style/MyActionBarTab</item>
    <item name="actionBarTabStyle">@style/MyActionBarTab</item>
</style>

<style name="MyActionBar" parent="Widget.Sherlock.ActionBar">
    <item name="android:background">@android:color/white</item>
</style>

<style name="MyActionBarTabBar" parent="Widget.Sherlock.ActionBar.TabBar">
    <item name="android:background">@android:color/black</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:layout_width">match_parent</item>
</style>

<style name="MyActionBarTab" parent="Widget.Sherlock.ActionBar.TabView">
    <item name="android:background">@android:color/white</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:layout_width">wrap_content</item>
</style>

それは私のマニフェストです:

<application
    android:icon="@drawable/ic_launcher"
    android:logo="@drawable/abs__ic_go"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".FragmentTabsPager"
        android:label="@string/app_name"
        android:theme="@style/AppTHeme">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

CUstomTabs と Theme.Styled(ActionBar 用) スタイルを別々に使用しようとしましたが、結果はありません。

4

1 に答える 1

0
<style name="Widget.Sherlock.ActionBar.TabView" parent="Widget.Sherlock.ActionBar.TabView">

拡張する親のようなスタイルに同じ名前を使用しないでください。android はどれを選択するかをどのように知る必要がありますか?

有効な名前は、識別のためにテーマ名を含む名前です。

<style name="AppTheme.ActionBar.TabView" parent="Widget.Sherlock.ActionBar.TabView">
于 2012-11-28T11:51:55.740 に答える