我无法在CoordinatorLayout

时间:2015-10-28 06:51:11

标签: android toolbar android-design-library

我附加了xml有一个ScrollView,其中包含一些imageview来测试工具栏是否可以隐藏。就我而言,它没有。

我使用了buildToolsVersion "22.0.1"compile 'com.android.support:appcompat-v7:22.2.0'以及compile 'com.android.support:design:22.2.0'

解决方法是什么?

我的xml如下:

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toorbar"
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:background="?attr/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"/>
    </android.support.design.widget.AppBarLayout>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/drawer_header"/>
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/drawer_header"/>
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/drawer_header"/>
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/drawer_header"/>
        </LinearLayout>

    </ScrollView>
</android.support.design.widget.CoordinatorLayout>

但无法隐藏工具栏

2 个答案:

答案 0 :(得分:1)

ScrollView不会与协调器布局相关联。使用NestedScrollView而不是ScrollView。它会工作。

here

答案 1 :(得分:0)

发生在我身上。我将ContraintLayout与CoordinatorLayout混淆了。它是其中之一&#34;你关闭并打开了#34;我在那里读得不够。花了我3个小时来理解为什么我的工具栏没有隐藏。不要让这件事发生在你身上,特别是如果你使用Android工作室生成的模板化活动布局。