http://code.google.com/p/iosched/
http://developer.android.com/resources/samples/HoneycombGallery/index.html
它目前有
minSdkVersion = 8 minSdkTarget = 11
在我的清单中设置.我已经尝试了我能想到的一切,但似乎无法获得我想要的造型.我已经完成了很多样式,但有一件事我仍然没有…标签.我找不到任何方法给它们着色.
现在在我走得太远之前,在你告诉我之前我错过了一些明显的东西,甚至可以改变Android 3.1上的标签颜色……甚至是3.0(通常是明亮的蓝色下划线)?看来我可以做其他一切……
我一直在寻找答案.包括这些地方和许多,更多……
http://developer.android.com/guide/topics/ui/actionbar.html
http://android-developers.blogspot.com/2010/05/twitter-for-android-closer-look-at.html
http://developer.android.com/resources/samples/ActionBarCompat/index.html
http://android-developers.blogspot.com/2011/04/customizing-action-bar.html
Android 3.0 ActionBar,changing colors
Android action bar like twitter sample
Android ActionBar tab style for Honeycomb
http://groups.google.com/group/android-developers/browse_thread/thread/983509d7261c54f4
如果不出意外,对于那些寻找的人来说,这是一个不错的链接列表……
谢谢
解决方法
<style name="MyTheme.Light" parent="@android:style/Theme.Holo.Light"> <item name="android:windowActionBarOverlay">true</item> <item name="android:actionBarTabStyle">@style/customActionBarTabStyle</item> <item name="android:actionBarTabTextStyle">@style/customActionBarTabTextStyle</item> </style> <style name="customActionBarTabTextStyle"> <item name="android:textColor">@android:color/white</item> </style> <style name="customActionBarTabStyle"> <item name="android:background">@drawable/actionbar_tab_bg</item> <item name="android:paddingLeft">24dp</item> <item name="android:paddingRight">24dp</item> </style>