AndroidStudio Toolbar 滑动隐藏以及返回按钮点击事件

Android Toolbar 实现收缩展开动画:
使用 CoordinatorLayout 作为做外层布局,
ToolBar 使用 AppBarLayout和 CollapsingToolbarLayout 两个嵌套。

CollapsingToolbarLayout 需指定 layout_scrollFlags :scroll,exitUntilCollapsed,enterAlwaysCollapsed,|enterAlways,snap 其中的一种或多种。
CoordinatorLayout 里面的子布局需要添加可滑动的布局,如NestedScrollView或者RecycleView等,其他滑动如listview貌似不可以实现toolbar下滑收缩,可嵌套NestedScrollView,不过需解决滑动冲突问题,或直接使用RecycleView.
可滑动控件,如NestedScrollView,需添加动作标识:layout_behavior:@string/appbar_scrolling_view_behavior

使用 NestedScrollView 要添加 android:fillViewport=”true” 使子控件充满布局

为了状态栏和标题栏分开,需添加:android:fitsSystemWindows=”true”

界面描述图如下:
AndroidStudio Toolbar 滑动隐藏以及返回按钮点击事件_第1张图片

具体代码示例:

"1.0" encoding="utf-8"?>
.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"
    android:fitsSystemWindows="true"
    tools:context="com.zhou.picassotest.MainActivity">

    .support.design.widget.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/app_bar_height"
        android:fitsSystemWindows="true"
        android:theme="@style/AppTheme.AppBarOverlay">

        .support.design.widget.CollapsingToolbarLayout
            android:id="@+id/toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

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

        .support.design.widget.CollapsingToolbarLayout>
    .support.design.widget.AppBarLayout>

    .support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        "@+id/gridView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/white"
            android:gravity="center"
            android:numColumns="4"
            android:scrollbars="none"
            android:stretchMode="columnWidth" />

    .support.v4.widget.NestedScrollView>

.support.design.widget.CoordinatorLayout>

Toolbar 使用简单介绍:
在布局中 findViewById 找到控件,注意需要 v7 适配包中的Toolbar
getSupportActionBar(toolbar);
想使用 toolbar 的返回按钮(都要在setSupportActionBar 后调用)实现 Toolbar 点击返回事件:

toolbar.setNavigationIcon( mDrawable);//或者在布局中 app:navigationIcon="?attr/homeAsUpIndicator"
toolbar.setNavigationOnClickListener(new View.OnClickListener(){
    public void onClick(View view){
        finish();
    }
};

或者
getSupportActionBar().setDisplayHomeAsUpEnable(true);

重写 onOptionsItemSelected

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    if(item.getItemId()==android.R.id.home){
        finish();
        return true;
    }
    return super.onOptionsItemSelected(item);
}

你可能感兴趣的:(Android开发)