SearchView出现/消失

时间:2016-07-15 07:20:36

标签: android xml searchview

在我的申请中,我想创建这样的东西:

Gif1

我希望所有AppBar都显示/消失,但使用CollapingToolbarLayout并不适合我。

我尝试了类似的东西:

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

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:fitsSystemWindows="true">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginStart="48dp"
        app:expandedTitleMarginEnd="64dp"
        android:fitsSystemWindows="true">

        <SearchView
            android:id="@+id/searchView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="centerCrop"
            android:fitsSystemWindows="true"
            app:layout_collapseMode="parallax"/>


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

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

<android.support.v4.widget.NestedScrollView
    android:id="@+id/scroll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipToPadding="false"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

[...]

</android.support.v4.widget.NestedScrollView>


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

但它没有用。

有人可以帮帮我吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

你必须使用Cheesesquare演示来获得你想要的东西..

演示链接:

https://github.com/chrisbanes/cheesesquare

输出

正常屏幕。

enter image description here

向下滚动屏幕时会隐藏ToolBar

enter image description here