gpt4 book ai didi

java - 在带有后退按钮的工具栏中使用自定义标题

转载 作者:行者123 更新时间:2023-11-29 04:25:31 25 4
gpt4 key购买 nike

我想在我的工具栏标题中使用自定义文本。我已经添加如下

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:titleTextColor="?attr/TextColor">
<TextView
android:textColor="?attr/TextColor"
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
android:layout_gravity="center" />

</android.support.v7.widget.Toolbar>

在java中我写了如下代码

toolbar = (Toolbar) findViewById(R.id.toolbar);
Typeface font=Typeface.createFromAsset(AuthorQuoteActivityTabs.this.getAssets(), constant.font);
TextView mTitle = (TextView) toolbar.findViewById(R.id.toolbar_title);
mTitle.setText("authorName");
mTitle.setTypeface(font,Typeface.BOLD);
setSupportActionBar(toolbar);
if (getSupportActionBar() != null) {
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}

它工作正常,但我在工具栏中获得了自定义标题文本和应用程序名称。我只想要我的自定义文本。如何删除默认标题并仅使用工具栏中的自定义文本?

谢谢

最佳答案

当您在单独的 TextView 中设置标题时,您需要通过

删除“普通”标题
getSupportActionBar().setTitle("");

关于java - 在带有后退按钮的工具栏中使用自定义标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46572843/

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