0

我已按照这些说明进行操作,并MyStyle使用Android Action Bar Style Generator创建,但我的样式不起作用,我看不到我的颜色。

我有styles_mystyle.xml一个

<style name="Theme.Mystyle" parent="@style/Theme.Sherlock.Light">

并且在AndroidManifest.xml

<application
    //...
    android:theme="@style/Theme.Mystyle" >

所以我不知道问题出在哪里。你能帮助我吗?我的代码与之前链接中的代码完全相同。

4

1 回答 1

1

样式生成器为 ActionBar 选项卡创建主题。ViewPager 看起来很相似,但需要一组不同的定义样式。您可以在此处找到 ViewPagerIndicator 样式的示例:

https://github.com/JakeWharton/Android-ViewPagerIndicator/blob/master/sample/res/values/styles.xml

或者,您可以使用从样式生成器创建的样式,方法是使用 ActionBar 选项卡而不是 ViewPagerIndicator。

非常基本的带有片段的 actionbarsherlock 选项卡:FragmentTransaction 在 onTabSelected() 方法中为空

可以在此处找到有关选项卡与标题条的更多信息:

http://developer.android.com/training/implementing-navigation/lateral.html

于 2013-08-12T16:07:13.600 回答