我已经考虑到这两个例子开始了我的应用程序:
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
如果不出意外,对于那些正在寻找的人来说,这是一个很好的链接列表......
由于
答案 0 :(得分:2)
<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>
答案 1 :(得分:0)
我认为你不能改变精细的蓝线颜色。