我想自定义我的应用程序的 *** 作栏.
我用这种方式调用actiong:
public boolean onCreateOptionsMenu(Menu menu) { super.onCreateOptionsMenu(menu); /* * menu.add(int groupID,int itemID,int order,CharSequence Title); */ MenuItem menu0 = menu.add(0,"Action Item 0"); { menu0.setIcon(R.drawable.ic_launcher); menu0.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM); } return true;}
我的style.xml:
<resources><style name="AppBasetheme" parent="androID:theme.light"> <item name="androID:actionbarStyle">@style/MyActionbar</item></style><style name="Apptheme" parent="AppBasetheme"></style><style name="MyActionbar" parent="@androID:style/Widget.Holo.light.Actionbar"> <item name="androID:textcolor">#CCCCCC</item></style>
然而textcolor保持默认(#FFF),尝试了一切,不知道我哪里出错了,我感谢任何帮助.谢谢!
解决方法 试试这个:<style name="AppBasetheme" parent="androID:theme.light"> <item name="androID:actionbarStyle">@style/MyActionbar</item> <item name="actionbarStyle">@style/MyActionbar</item></style><style name="Apptheme" parent="AppBasetheme"></style><style name="MyActionbar" parent="@androID:style/Widget.Holo.light.Actionbar"> <item name="androID:textcolor">#CCCCCC</item> <item name="textcolor">#CCCCCC</item></style>
有时因为你使用的API,删除androID:工作
还尝试在color.xml中定义颜色并使用这种方式:
<style name="MyActionbar" parent="@androID:style/Widget.Holo.light.Actionbar"> <item name="androID:textcolor">@color/mcolor</item> <item name="textcolor">@color/mcolor</item> </style>
编辑:
<style name="MyActionbar"parent="@androID:style/Widget.Holo.light.Actionbar"> <item name="androID:TitleTextcolor">@style/Mytheme.Actionbar.TitleTextcolor</item></style><style name="MyActionbar.TitleTextcolor" parent="@androID:style/TextAppearance.Holo.Widget.Actionbar.Title"> <item name="androID:textcolor">@color/mcolor</item></style>总结
以上是内存溢出为你收集整理的自定义Android ActionBar全部内容,希望文章能够帮你解决自定义Android ActionBar所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)