程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> actionbar-自定義的android工具欄

actionbar-自定義的android工具欄

編輯:編程綜合問答
自定義的android工具欄

我想創建一個新的主題,還有自定義工具欄:

<resources>

    <style name="Theme.Shappy.Red" parent="Theme.Sherlock.Light">
        <item name="android:actionBarStyle">@style/ActionBar.Shappy.Red</item>
        ...
        ... [some_other_customizations]
    </style>

    <!-- Action bar -->
    <style name="ActionBar.Shappy.Red" parent="@style/Widget.Sherlock.Light.ActionBar.Solid">        
        <item name="android:background">#ffb70000</item>
        <item name="android:titleTextStyle">@style/ActionBar.Title.Shappy.Red</item>
    </style>

    <!-- Action bar text -->
    <style name="ActionBar.Title.Shappy.Red" parent="@style/TextAppearance.Sherlock.Widget.ActionBar.Title">
            <item name="android:textColor">#ddffffff</item>
    </style>
</resources>

正如上面所示,我使用Sherlock。這段代碼在 API 14上可以正常運行,但是在API 10上不行。我看到 Holo light像工具欄。我覺得這段代碼是正確的,因為 [some_other_customizations]能正確應用。 大家的意見呢?

最佳回答:


我覺得代碼是沒問題,但是既然你提到 holo.ligth 這個屬性和 API的級別這兩點,其實答案已經出來了,holo.light這個是4.0才有的屬性(可能3.0已經有了,沒接觸過3.0),API 10是對應android 2.3的,所以代碼在API 10上不能運行也就不奇怪了,正如同在4.0沒有titlebar,取而代之的是actionbar一樣。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved