如何使用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.