gpt4 book ai didi

Android:如何在工具栏中居中标题

转载 作者:IT老高 更新时间:2023-10-28 23:26:11 26 4
gpt4 key购买 nike

我是第一次在我的项目中使用 ToolBar,所以我不知道如何在 android 中自定义工具栏。我需要将标题居中放在工具栏上,请告诉我该怎么做。

提前致谢。

最佳答案

在工具栏居中添加一个 TextView 的问题是在工具栏中添加菜单项会偏移居中的文本。

为了解决这个问题,我将文本分层放在工具栏的顶部,而不是在里面。这样无论你添加多少图标,它都不会偏移居中的文本:

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
</android.support.v7.widget.Toolbar>

<TextView
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name"/>

</RelativeLayout>
</android.support.design.widget.AppBarLayout>

这样就不需要任何额外的逻辑来补偿工具栏上后退按钮/溢出菜单/搜索图标等的偏移间距,因为居中的文本在它上面,而不是在它里面。

关于Android:如何在工具栏中居中标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29443604/

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