Я хочу, чтобы мой заголовок центрировался на моей панели инструментов, для этого я использую панель инструментов вместо панели действий для настроенного макета.Я закончил с ConstraintLayout, чтобы сделать центрированный заголовок.
Здесь я хочу некоторые динамические пункты меню, основанные на фрагментах (например, поиск при сохранении, редактировании).
Если я добавлю пункты меню с помощью метода onCreateOptionsMenu, выравнивание заголовка будет немного смещено влево.Это не по центру.Как я могу сделать это по центру пунктов меню?
Это моя панель инструментов
<androidx.appcompat.widget.Toolbar 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:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
app:contentInsetEnd="0dp"
app:contentInsetLeft="0dp"
app:contentInsetRight="0dp"
app:contentInsetStart="0dp">
<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"
android:fontFamily="@font/heebo_medium_font"
android:text="@string/secure_vault"
android:textColor="@color/textTitle"
android:textSize="18sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.appcompat.widget.Toolbar>