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

android– 使用CollapsingToolBarLayout不可见工具栏标题,第1张

概述<android.support.design.widget.AppBarLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"><!--******************TOOLBAR*******************--><android.support.

<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>

大家好.
即使我在我的活动中设置了以下内容,我的工具栏也不可见:

(toolbar.setTitle("Title");        toolbar.setTitleTextcolor(0xFFFFFF);

我提供了我的.XML文件的片段.
由于我是一个菜鸟,我正在请求stackoverflow军队寻求帮助.

非常感谢帮助我.

解决方法:

如果您需要在活动中设置,可以使用这样的支持 *** 作栏.

on 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不可见工具栏标题全部内容,希望文章能够帮你解决android – 使用CollapsingToolBarLayout不可见工具栏标题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1117361.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存