gpt4 book ai didi

android - 如何在 fragment 中的工具栏中心设置标题

转载 作者:行者123 更新时间:2023-12-04 08:38:06 28 4
gpt4 key购买 nike

如何在 fragment 中的工具栏中心设置标题。

我试过各种方法,但都没有用。我想以大胆的风格将 Tittle 设置在中心。

enter image description here

enter image description here

我想用大胆的风格把这些标题放在中间

最佳答案

你可以像这样把 text view 放在 toolbar 里:

<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_constraintTop_toTopOf="parent" >
<TextView
android:id="@+id/title"
android:text="Title"
android:textSize="20dp"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</androidx.appcompat.widget.Toolbar>

如果您想将 text view 文本设置为您的应用程序标题,请使用:

TextView t = (TextView) findViewById(R.id.title) ;
t.setText(getTitle()) ;

结果:

enter image description here

关于android - 如何在 fragment 中的工具栏中心设置标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64699487/

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