android – 如何更改ActionBarSherlock上的字体样式

android – 如何更改ActionBarSherlock上的字体样式,第1张

概述如何使用ActionBarSherlock主题更改 *** 作栏标题的字体大小? 我的主题(适用于我的整个申请如下): <style name="Theme.MyAppDefaults" parent="@style/Theme.Sherlock.Light"> <item name="android:textSize">@dimen/default_textsize</item> 如何使用ActionbarSherlock主题更改 *** 作栏标题的字体大小?

我的主题(适用于我的整个申请如下):

<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上的字体样式所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1137525.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存