在将我的工具栏标题置于CollapsingToolbarLayout内时,我遇到一些奇怪的行为。而是在右边显示标题。这是我的xml
<com.google.android.material.appbar.AppBarLayout
app:layout_scrollFlags="scroll|enterAlways"
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:gravity="center"
app:expandedTitleGravity="top"
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
app:collapsedTitleGravity="center"
android:fitsSystemWindows="true">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/headerImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"/>
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.Toolbar
app:contentInsetStartWithNavigation="0dp"
app:contentInsetEnd="0dp"
app:contentInsetStart="0dp"
app:contentInsetRight="0dp"
app:contentInsetLeft="0dp"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorAccent"
android:elevation="@dimen/text_size_small"
android:gravity="center"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:layout_collapseMode="pin"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<AutoCompleteTextView
android:text="@string/user_tracking"
android:textColor="@color/tcBlack"
android:id="@+id/toolbar_title"
style="@style/TcTextAppearance.Bold.Toolbar"
android:layout_gravity="center"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
在代码中,我将setDisplayShowTitleEnabled和setDisplayHomeUpEnabled都设置为false,但是仍然无法使工具栏的标题居中。我需要帮助