我的主题(适用于我的整个申请如下):
<style name="theme.MyAppDefaults" parent="@style/theme.Sherlock.light"> <item name="androID:textSize">@dimen/default_textsize</item> <item name="actionbarSize">@dimen/action_bar_height</item></style>
请注意,我的应用程序中的所有视图都设置了字体大小设置.只是不是Actionbar的字体.
解决方法 如果您只需要更改标题的样式,可以添加如下自定义视图:<TextVIEw androID:ID="@+ID/action_custom_Title" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="My Custom Title" androID:textcolor="#fff" androID:textSize="18sp" />
然后隐藏实际标题并显示自定义视图.
_actionbar.setdisplayShowTitleEnabled(false); LayoutInflater inflater = LayoutInflater.from(this); VIEw customVIEw = inflater.inflate(R.layout.custom_action_layout,null); TextVIEw TitleTV = (TextVIEw) customVIEw.findVIEwByID(R.ID.action_custom_Title); // you can apply a custom typeface here or do sth else... _actionbar.setCustomVIEw(customVIEw); _actionbar.setdisplayShowCustomEnabled(true);
就这样!如果你感兴趣的是Actionbar标题的默认字体大小是18sp.
总结以上是内存溢出为你收集整理的android – 如何更改ActionBarSherlock上的字体样式全部内容,希望文章能够帮你解决android – 如何更改ActionBarSherlock上的字体样式所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)