Android Material Design:CoordinatorLayout与NestedScrollView

简介: Android Material Design:CoordinatorLayout与NestedScrollView在我的上一篇文章《Android Material Design:基于CoordinatorL...


Android Material Design:CoordinatorLayout与NestedScrollView


在我的上一篇文章《Android Material Design:基于CoordinatorLayout实现向上滚动导航条ToolBar滚出、向下滚动导航条滚出(文章链接地址:http://blog.csdn.net/zhangphil/article/details/48877721 )》,实现了一个RecyclerView触发ToolBar自动滑入滑出效果的CoordinatorLayout。在有些应用场景下,也许不一定非要用RecyclerView这样的“ListView”滑动列表,可能仅仅只是一些竖直放置的子View,如果是这样的情况,则需要通过Android Material Design的NestedScrollView。
NestedScrollView是一个增强型的ScrollView。在本例中,它将包裹在自己布局内的子View滚动并触发CoordinatorLayout中设置的ToolBar滑入滑出。
效果如图所示。
初始化状态:



当手指在屏幕向上滑动时候,ToolBar自动滚出:


给出实现的全部源代码。
MainActivity.java :

package zhangphil.view;

import android.app.Activity;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v7.widget.Toolbar;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		Toolbar mToolbar = (Toolbar) findViewById(R.id.toolBar);
		mToolbar.setLogo(R.drawable.ic_launcher);
		mToolbar.setNavigationIcon(android.R.drawable.ic_menu_delete);
		mToolbar.setTitle("zhangphil");
		mToolbar.setSubtitle("zhangphil副标题");

		TabLayout tabLayout = (TabLayout) findViewById(R.id.tabLayout);
		for (int i = 0; i < 10; i++)
			tabLayout.addTab(tabLayout.newTab().setText("选项卡槽" + i));
		tabLayout.setTabMode(TabLayout.MODE_SCROLLABLE);
	}
}


activity_main.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"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true" >

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

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolBar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"
            android:background="#2196f3"
            android:minHeight="?attr/actionBarSize" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="一个TextView" />
        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:id="@+id/tabLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#e0e0e0"
            app:tabIndicatorColor="#ef5350"
            app:tabSelectedTextColor="#1976d2"
            app:tabTextColor="#90caf9" />
    </android.support.design.widget.AppBarLayout>

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

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="50dp"
                android:text="0" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="50dp"
                android:text="1" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="50dp"
                android:text="2" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="50dp"
                android:text="3" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="50dp"
                android:text="4" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="50dp"
                android:text="5" />
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>

    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:src="@drawable/ic_launcher" />

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


注意:需要设置app:layout_behavior="@string/appbar_scrolling_view_behavior"。否则,组件布局存在互相遮掩的现象,导致在RecyclerView的前几条元素被上方组件遮挡看不到,或者在本例中的前几个TextView被上方遮挡看不到。


代码运行结果就是本文中前两幅图所示。

相关文章
|
4月前
|
XML Android开发 UED
💥Android UI设计新风尚!掌握Material Design精髓,让你的界面颜值爆表!🎨
随着移动应用市场的蓬勃发展,用户对界面设计的要求日益提高。为此,掌握由Google推出的Material Design设计语言成为提升应用颜值和用户体验的关键。本文将带你深入了解Material Design的核心原则,如真实感、统一性和创新性,并通过丰富的组件库及示例代码,助你轻松打造美观且一致的应用界面。无论是色彩搭配还是动画效果,Material Design都能为你的Android应用增添无限魅力。
94 1
|
6月前
|
XML Android开发 UED
💥Android UI设计新风尚!掌握Material Design精髓,让你的界面颜值爆表!🎨
【7月更文挑战第28天】随着移动应用市场的发展,用户对界面设计的要求不断提高。Material Design是由Google推出的设计语言,强调真实感、统一性和创新性,通过模拟纸张和墨水的物理属性创造沉浸式体验。它注重色彩、排版、图标和布局的一致性,确保跨设备的统一视觉风格。Android Studio提供了丰富的Material Design组件库,如按钮、卡片等,易于使用且美观。
173 1
|
7月前
|
编解码 Android开发
Android 解决TextView多行滑动与NestedScrollView嵌套滑动冲突的问题
Android 解决TextView多行滑动与NestedScrollView嵌套滑动冲突的问题
118 0
|
Android开发 开发者 UED
Android Design Support Library初探-更新中
Android Design Support Library初探-更新中
102 0
|
XML Java 开发工具
Android5.0新特性-Material Design
Android5.0新特性-Material Design
99 0
|
开发工具 Android开发
Android Support Design Library之FloatingActionButton(二)
Android Support Design Library之FloatingActionButton(二)
84 0
Android Support Design Library之FloatingActionButton(二)
|
Android开发
Android Support Design Library之FloatingActionButton(一)
Android Support Design Library之FloatingActionButton(一)
89 0
Android Support Design Library之FloatingActionButton(一)
|
数据安全/隐私保护 Android开发 容器
Android Support Design Library之TextInputLayout(二)
Android Support Design Library之TextInputLayout(二)
143 0
Android Support Design Library之TextInputLayout(二)
|
XML 算法 Android开发
Android Support Design Library之TextInputLayout(一)
Android Support Design Library之TextInputLayout(一)
143 0
Android Support Design Library之TextInputLayout(一)
|
Android开发
Android Support Design Library之TabLayout
Android Support Design Library之TabLayout
159 0
Android Support Design Library之TabLayout