这里是新手。我的折叠工具栏作为常规工具栏反应,没有折叠行为。
这是我进行抽屉布局的活动。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
android:id="@+id/includedLayout"
layout="@layout/app_bar_activity_drawer"
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_activity_drawer"
app:menu="@menu/activity_drawer_drawer" />
</android.support.v4.widget.DrawerLayout>
在上述布局中,包括此布局,其中包含所有其他内容app_bar_activity_drawer.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activity_drawer">
<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>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/content_activity_drawer" />
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
这是上面布局中包含的布局content_activity_drawer.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/helloLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activity_drawer"
tools:showIn="@layout/app_bar_activity_drawer">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
请问是什么问题。 非常感谢您的支持。
答案 0 :(得分:0)
实际上,您不是在布局中添加折叠式工具栏,
要将折叠的工具栏添加到布局中,请将 AppBarLayout内的CollapsingToolbarLayout。然后,添加一个工具栏 以及其他任何视图作为CollapsingToolbarLayout的子视图。使 确保整个视图结构都在CoordinatorLayout中 利用CollapsingToolbarLayout的滚动和功能。
工具栏折叠的布局可能看起来像这样:
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Scrollable view here -->
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="@dimen/tall_toolbar_height">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleGravity="top"
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"/>
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
查看链接以获取更多详细信息