gpt4 book ai didi

Android 工具栏中心标题和自定义字体

转载 作者:IT老高 更新时间:2023-10-28 12:49:50 25 4
gpt4 key购买 nike

我正在尝试找出使用自定义字体作为工具栏标题的正确方法,并将其置于工具栏中(客户要求)。

目前,我正在使用旧的 ActionBar,我将标题设置为空值,并使用 setCustomView 放置我的自定义字体 TextView 并使用 ActionBar.LayoutParams 将其居中。

有没有更好的方法来做到这一点?使用新的 Toolbar 作为我的 ActionBar。

最佳答案

要在 Toolbar 中使用自定义标题,您只需记住 Toolbar 只是一个精美的 ViewGroup,因此您可以添加自定义标题,如下所示:

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_top"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?android:attr/actionBarSize"
android:background="@color/action_bar_bkgnd"
app:theme="@style/ToolBarTheme" >


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Toolbar Title"
android:layout_gravity="center"
android:id="@+id/toolbar_title" />


</android.support.v7.widget.Toolbar>

这意味着您可以随意设置 TextView 的样式,因为它只是一个常规的 TextView。因此,在您的 Activity 中,您可以像这样访问标题:

Toolbar toolbarTop = (Toolbar) findViewById(R.id.toolbar_top);
TextView mTitle = (TextView) toolbarTop.findViewById(R.id.toolbar_title);

关于Android 工具栏中心标题和自定义字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26533510/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com