如何更改字体、文本大小和设置文本位置居中工具栏Android?

How to change font,size of text and set text position center ToolBar Android?

我需要更改字体大小、字体本身以及将工具栏中的文本居中。 我从 Bottom Navigation Activity studio.

拿了一个模板

我试图在 themes.xml 中设置文本大小(我能够在那里更改背景颜色和文本颜色)

<style name="CustomToolBarStyle" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
<item name="titleTextColor">@color/black</item>
<item name="android:background">@color/white</item>

我试图在 themes.xml 中使用此选项:

<item name="android:gravity">center</item>

没用。我试图按照以下说明进行操作: 抛出 android.support.v7.widget.Toolbar 错误并崩溃。

ToolBar

NavbarTemplate

对于 API 级别 21+,您可以使用工具栏的 app:titleTextAppearance 属性

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="?actionBarSize"
    android:id="@+id/toolbar"
    app:titleTextAppearance="@style/yourstyle" />

并以自定义样式覆盖默认标题大小:

<style name="yourstyle" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
    <item name="android:textSize">18sp</item>
    <item name="android:fontFamily">yourFont</item>
</style>

对于居中,你应该遵循这个答案,如果这个和另一个答案的 none 从同一个 post https://whosebug.com/a/38175403/9917400 对你有用,而不是只在内部使用线性布局工具栏。

您可以在工具栏中设置约束布局

 <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?actionBarSize"
            app:layout_collapseMode="pin">

            <androidx.constraintlayout.widget.ConstraintLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent">
                    <TextView
                       android:layout_width="wrap_content"
                       android:layout_height="wrap_content"
                       app:layout_constraintEnd_toEndOf="parent"
                       app:layout_constraintStart_toStartOf="parent"
                       app:layout_constraintTop_toTopOf="parent"
                       app:layout_constraintBottom_toBottomOf="parent"
                       android:textColor="@color/blue"
                       android:textSize="16sp"
                       app:fontPath="fonts/xxx" />
             </androidx.constraintlayout.widget.ConstraintLayout>
  </androidx.appcompat.widget.Toolbar>

如果您使用 androidx,请不要使用 android.support.v7.widget.Toolbar

你必须使用 androidx.appcompat.widget.Toolbar

在 res/layout 中创建 toolbar.xml。 输入此代码:

<?xml version="1.0" encoding="utf-8"?>
    <androidx.coordinatorlayout.widget.CoordinatorLayout 
     xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        tools:context=".MainActivity">
    
        <com.google.android.material.appbar.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            >
    
            <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="yourToolBarBackgroundColor"
                >
    
                <TextView
                    android:id="@+id/toolbar_title"
                    style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"

                    android:layout_gravity="center"
                    android:text="TestToolBar"
                    android:fontFamily="yourFont"
                    android:textSize="yourSizeOfText"
                    android:textColor="yourTextColor" />
    
            </androidx.appcompat.widget.Toolbar>
    
        </com.google.android.material.appbar.AppBarLayout>
    
        <include layout="@layout/activity_main" />
    
    </androidx.coordinatorlayout.widget.CoordinatorLayout>

在 themes.xml 中禁用 ActionBar:

<style name="Theme.YourProject" parent="Theme.MaterialComponents.DayNight.NoActionBar">

对于夜间主题,您必须在 themes.xml(夜间)

中执行相同的操作

然后在MainActivity.java的onCreate中:

setContentView(R.layout.toolbar);