安卓工具栏风格



我在棒棒糖项目中添加了一个Toolbar。但是,我在设计Toolbar时遇到了问题。我在Toolbar中的标题看起来是粗体,但我希望它是斜体。知道如何做到这一点吗?我试过玩actionbar-style,但运气不好。

我已经用app:theme="@style/toolbar"Toolbar上设置了一种风格,而我的@style/toolbar(父ThemeOverlay.AppCompat.ActionBar)是我玩的地方,但没有好的结果。

工具栏标题是可设置样式的。您所做的任何自定义都必须在主题中进行。我给你举个例子。

工具栏布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    style="@style/ToolBarStyle.Event"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/colorPrimary"
    android:minHeight="@dimen/abc_action_bar_default_height_material" />

样式:

<style name="ToolBarStyle" parent="ToolBarStyle.Base"/>
<style name="ToolBarStyle.Base" parent="">
    <item name="popupTheme">@style/ThemeOverlay.AppCompat.Light</item>
    <item name="theme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
</style>
<style name="ToolBarStyle.Event" parent="ToolBarStyle">
    <item name="titleTextAppearance">@style/TextAppearance.Widget.Event.Toolbar.Title</item>
</style>
<style name="TextAppearance.Widget.Event.Toolbar.Title" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
    <!--Any text styling can be done here-->
    <item name="android:textStyle">normal</item>
    <item name="android:textSize">@dimen/event_title_text_size</item>
</style>

这其实很容易。Toolbar上有一个名为setTitleTextAppearance()的方法,似乎每个人都忽略了它。只需在styles.xml中定义自定义的textAppearance,例如:

    <style name="MyTitleTextApperance" parent="@android:style/TextAppearance.Medium">
    <item name="android:textColor">@android:color/white</item>
    <item name="android:textSize">20sp</item>
</style>

然后在你的代码中,你只需调用:

    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    toolbar.setTitleTextAppearance(this, R.style.MyTitleTextApperance);

瞧!

您可以在Toolbar中添加TextView,例如:

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/re/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorPrimary" >
    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textStyle="italic" />
</android.support.v7.widget.Toolbar>

上述问题仅发生在棒棒糖版本中,而不发生在Kitkat及更低版本中。棒棒糖不遵循文本样式,并放置了自己的TitleTextAppearance。因此,即使您为Toolbar添加了自己的TextView子项(如下所示),android.support.v7.widget.Toolbar仍然会覆盖您的样式。

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:theme="@style/someToolbarStyle"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
        android:id="@+id/title"
        android:textAppearance="@style/TextAppearance.AppCompat.Title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</android.support.v7.widget.Toolbar>

为了最终解决这个问题,将您自己的TextView作为标题,并覆盖ToolbarsetTitle方法以跳过棒棒糖预定义的TitleTextAppearance

public class YourCustomToolbar extends Toolbar {
    public YourCustomToolbar (Context context) {
        super(context);
    }
    public YourCustomToolbar (Context context, AttributeSet attrs) {
        super(context, attrs);
    }
    public YourCustomToolbar (Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
     }
    @Override
    public void setTitle(CharSequence title) {
        ((TextView) findViewById(R.id.title)).setText(title);
    }
    @Override
    public void setTitle(int title) {
        ((TextView) findViewById(R.id.title)).setText(title);
    }
}

您可以将主题应用于工具栏,如下所示:

<android.support.v7.widget.Toolbar  
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:minHeight="56dp"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

只要修改styles.xml中的样式,更改TextAppearance属性,就可以开始了。

相关内容

  • 没有找到相关文章