gpt4 book ai didi

android - AppCompat 工具栏不显示

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:06:30 24 4
gpt4 key购买 nike

在主题中声明 .NoActionBar 以及在布局中放置 toolbar 之后,我的 toolbar 没有显示。我最终得到的正是您在声明无操作栏时所期望的——没有操作栏。这是布局:

activity_home.xml:

<include
layout="@layout/app_bar_home"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_home"
app:menu="@menu/activity_home_drawer"/>

app_bar_home.xml

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

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

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

<include layout="@layout/content_home"/>

最佳答案

在你的 Activity 中你必须初始化你的工具栏(如果你还没有这样做)

Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

关于android - AppCompat 工具栏不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34034312/

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