在我的应用程序中,我有一个活动和很多片段。在我的活动布局中,我添加了一个Toolbar
,我希望所有嵌套的片段都可以访问。像这样:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
... />
<fragment
android:id="@+id/host_fragment"
... />
</LinearLayout>
当前,导航视图在拉出时不会覆盖工具栏。
在我的一个片段中,我想用NavigationView
中的DrawerLayout
覆盖工具栏,但是由于Toolbar
在父对象中,因此我不确定该怎么做视图。如果我想要这样的行为,这是否意味着活动不能包含Toolbar
?