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

前端之家收集整理的这篇文章主要介绍了android – 如何更改ActionBarSherlock上的字体样式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用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.

原文链接:https://www.f2er.com/android/317027.html

猜你在找的Android相关文章