gpt4 book ai didi

android - 使用 CollapsingToolBarLayout 时工具栏标题不可见

转载 作者:太空宇宙 更新时间:2023-11-03 10:36:32 25 4
gpt4 key购买 nike

<android.support.design.widget.AppBarLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<!-- ****************** TOOLBAR ******************* -->
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|snap"

>
<android.support.v7.widget.Toolbar
app:layout_scrollFlags="scroll|enterAlways|snap"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/toolbar"
>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>

大家好。我的工具栏不可见,即使我在我的 Activity 中设置了它:

(toolbar.setTitle("TITLE");
toolbar.setTitleTextColor(0xFFFFFF);

我提供了我的 .XML 文件的 fragment 。由于我是菜鸟,所以我请求 stackoverflow 大军的帮助。

非常感谢你帮助我。

最佳答案

如果你需要在你的 Activity 中设置,你可以像这样使用支持操作栏。

onCreate

     setSupportActionBar(toolbar);

然后稍后当你要设置你的标题时试试这个。

     if (getSupportActionBar() != null) {
if (title!=null) {
getSupportActionBar().setDisplayShowTitleEnabled(true);
getSupportActionBar().setTitle(title);
} else {
getSupportActionBar().setDisplayShowTitleEnabled(false);
}
}

如果没有,你也可以使用 xml 选项:

    <android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:title="TITLE"
app:popupTheme="@style/AppTheme.PopupOverlay">

希望对您有所帮助。

关于android - 使用 CollapsingToolBarLayout 时工具栏标题不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43123980/

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