Android Material Design库用法举例

Material Design

Android 5.0 Lollipop版本加入了Material Design库,通过这个库,开发人员可以轻松实现体现了Material Design风格的界面开发。本文将通过示例讲解该库里面常用的一些控件的使用方法,包括:
TextInputLayout,FloatingActionButton,Snackbar,CoordinatorLayout等。

Github Demo 地址

TextInputLayout
通过将传统的Edittext用TextInputLayout包裹起来,可以使得在用户输入的时候hint信息悬浮在输入框上方,随时提醒用户当前输入的内容是什么,效果如下图:

TextInputLayout

使用很简单:

<android.support.design.widget.TextInputLayout    
    android:layout_width="wrap_content"    
    android:layout_height="wrap_content">    

    <EditText        
        android:layout_width="200dp"        
        android:layout_height="wrap_content"        
        android:hint="Input your name here"/>

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

其hint颜色,下划线默认颜色,高亮颜色,悬浮hint颜色等都可以设置,具体设置在res/values/styles.xml中,在当前app使用的Theme里设置:

<resources>    
    <!-- Base application theme. -->    
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">        
        <!-- Customize your theme here. -->        
        <item name="colorPrimary">@color/colorPrimary</item>        
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>        
        <item name="colorAccent">@color/blue</item>        
        <item name="android:textColorHint">@color/gray</item>        
        <item name="colorControlNormal">@color/black</item>        
        <item name="colorControlActivated">@color/yellow</item>        
        <item name="colorControlHighlight">@color/green</item>    
    </style>
</resources>    

其中textColorHint代表hint的颜色,colorControlNormal代表下划线没有获取焦点的颜色,colorControlActivated/colorControlHighlight代表了获取焦点或者点击的时候下划线的颜色。其他各种名称和代表的color如下图所示:


theme颜色说明

FloatingActionButton

FloatingActionButton是界面上的一个悬浮按钮,用来指示界面上的某个操作,界面下所示。

FloatingActionButton

可以通过anchor指定以哪个控件为基准,并用anchorGravity属性指定和基准控件的对齐方式,来将它放在界面上的某个位置。

<android.support.design.widget.FloatingActionButton    
    android:id="@+id/fab"    
    android:layout_width="wrap_content"    
    android:layout_height="wrap_content"    
    android:layout_margin="@dimen/fab_margin"    
    app:layout_anchor="@id/collapsing_toolbar_layout"    
    app:layout_anchorGravity="bottom|end"    
    app:srcCompat="@android:drawable/ic_dialog_email" />

添加响应事件:

FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
}

snackbar
Snackbar是类似于toast的提醒类型的消息,展示在界面底部,可以滑动删除。除了展示文字提示外,还可以添加一个action进行一些操作。

Snackbar.make(view, "这里是展示的文字", Snackbar.LENGTH_SHORT)        
    .setAction("Action", new View.OnClickListener() {            
        @Override            
        public void onClick(View view) {        
            // do something       
         }
    ).show();
SnackBar样式

CoordinatorLayout
CoordinatorLayout继承自ViewGroup,是一个加强版的FrameLayout。它有两个主要作用:

  1. 提供了一种实现MaterialDesign样式的简单布局
  2. 在该布局内的元素可以实现UI交互

利用CoordinatorLayout可以实现类似知乎的ToolBar随页面滑动而隐藏或展示,以及ToolBar折叠的效果。

ToolBar隐藏效果
ToolBar隐藏效果

使用下面的xml实现上面Toolbar随RecyclerView滑动而隐藏或展示的效果。

<android.support.design.widget.CoordinatorLayout 
    ...    
    android:layout_width="match_parent"    
    android:layout_height="match_parent"    
    android:fitsSystemWindows="true">    

    <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"            
            app:layout_collapseMode="parallax"            
            app:layout_scrollFlags="scroll|enterAlways"/>    
    </android.support.design.widget.AppBarLayout>    

    <android.support.v7.widget.RecyclerView        
        android:id="@+id/recycler_view"        
        android:layout_width="match_parent"        
        android:layout_height="match_parent"        
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
    ...
</android.support.design.widget.CoordinatorLayout>

这里有三个要点:

  1. 将Toolbar包裹在AppBarLayout里,CoordinatorLayout作为最外层layout。
  2. 指定Toolbar的layout_scrollFlags属性为"scroll | enterAlways"
  3. 同时给RecyclerView指定behavior属性为系统内置的“appbar_scrolling_view_behavior”
    这样就能实现CoordinatorLayout里面组件互相配合的效果。
Toolbar折叠效果
Toolbar折叠效果

使用下面的xml实现Toolbar折叠效果:

<android.support.design.widget.CoordinatorLayout   
    ...
    android:layout_width="match_parent"    
    android:layout_height="match_parent"    
    android:fitsSystemWindows="true" >

    <android.support.design.widget.AppBarLayout    
        android:layout_width="match_parent"    
        android:layout_height="192dp"    
        android:theme="@style/AppTheme.AppBarOverlay">    

        <android.support.design.widget.CollapsingToolbarLayout        
            android:id="@+id/collapsing_toolbar_layout"        
            android:layout_width="match_parent"        
            android:layout_height="match_parent"        
            app:layout_scrollFlags="scroll|exitUntilCollapsed"        
            android:background="@drawable/girl">        

            <android.support.v7.widget.Toolbar            
                android:id="@+id/toolbar"            
                android:layout_width="match_parent"           
                android:layout_height="?attr/actionBarSize"            
                app:layout_collapseMode="parallax" />    
            </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

    <android.support.v7.widget.RecyclerView    
        android:id="@+id/recycler_view"    
        android:layout_width="match_parent"    
        android:layout_height="match_parent"    
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />
    ...
</android.support.design.widget.CoordinatorLayout>

相比于Toolbar隐藏效果,折叠效果的实现有以下几个要点:

  1. 需要在Toolbar外面先包裹一层CollapsingToolbarLayout,然后在被AppBarLayout包裹
  2. 给CollapsingToolbarLayout设置layout_scrollFlags属性为"scroll | exitUntilCollapsed"
  3. 指定Toolbar的layout_collapseMode属性为"parallax"
FooterView的隐藏和展示效果

下面是FooterView隐藏和展示效果,向上滑动RecyclerView时评论布局隐藏,下滑时展示。


FooterView隐藏和展示

评论部分的布局如下:

<LinearLayout    
    android:id="@+id/footer_layout"    
    android:layout_width="match_parent"    
    android:layout_height="60dp"    
    app:layout_anchor="@id/recycler_view"    
    app:layout_anchorGravity="bottom"    
    android:background="@color/yellow"    
    app:layout_behavior=".FooterBehavior"    
    android:visibility="gone"    
    tools:visibility="visible">    

    <EditText        
        android:layout_width="0dp"        
        android:layout_height="wrap_content"        
        android:layout_weight="1"        
        android:hint="添加评论"        
        android:layout_margin="10dp"/>    

    <Button        
        android:layout_width="wrap_content"        
        android:layout_height="wrap_content"        
        android:text="发布评论"/>
</LinearLayout>

为了让FooterView响应RecyclerView滑动事件,我们指定layout的layout_behavior属性值为FooterBehavior。它是我们自定义的一个Behavior,Behavior是一种CoordinatorLayout内部元素进行交互的方式,我们可以根据需要实现自己的Behavior,实现特定的交互效果。

public class FooterBehavior extends CoordinatorLayout.Behavior<View> {    
    private boolean visible = false;    
    public FooterBehavior(Context context, AttributeSet attrs) {        
        super(context, attrs);    
    }    

    @Override    
    public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) {        
        return dependency instanceof RecyclerView;    
    }    

    @Override    
    public boolean onDependentViewChanged(CoordinatorLayout parent, View child, View dependency) {        
        return true;    
    }    

    @Override    
    public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, View child, View directTargetChild, View target, int nestedScrollAxes) {        
        return true;    
    }    

    @Override    
    public void onNestedScroll(CoordinatorLayout coordinatorLayout, View child, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) {        
        if (dyConsumed > 0 || dyUnconsumed > 0) {            
            moveOupAnimation(child);        
        }
    }    

    @Override    
    public boolean onNestedFling(CoordinatorLayout coordinatorLayout, View child, View target, float velocityX, float velocityY, boolean consumed) {        
        if (velocityY < -0.5) {            
            moveInAnimation(child);        
        } else {            
            moveOupAnimation(child);        
        }        

    return super.onNestedFling(coordinatorLayout, child, target, velocityX, velocityY, consumed);    
    }
    ...
}    

这里有几个要点:

  1. 要重写Behavior(context, attrs)这个构造函数,否则通过反射调用Behavior时会出错
  2. 重写layoutDependsOn函数,指定当前view所依赖的view,这里可以是依赖某种类型的view,如代码中所示依赖RecyclerView;也可以是依赖某一个特定的View,根据view的id进行判断
  3. 根据自己的实际需求,在所依赖的RecyclerView的onStartNestedScroll事件和onNestedFling中,加入对view本身的处理

这里实现FooterView的动画效果代码如下,关于动画的实现技术可以参考我的这篇文章

private void moveInAnimation(View v) {    
    if (!visible) {        
        v.setVisibility(View.VISIBLE);        
        ObjectAnimator moveTopAnim = ObjectAnimator.ofFloat(v, "translationY", v.getHeight(), 0);        
        moveTopAnim.setDuration(300);        
        moveTopAnim.start();        
        visible = true;    
    }
}

private void moveOupAnimation(View v) {    
    if (visible) {        
        ObjectAnimator moveTopAnim = ObjectAnimator.ofFloat(v, "translationY", 0, v.getHeight());        
        moveTopAnim.setDuration(300);        
        moveTopAnim.start();        
        visible = false;    
    }
}

Github Demo 地址

参考:
https://android-developers.googleblog.com/2015/05/android-design-support-library.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,398评论 25 707
  • 内容抽屉菜单ListViewWebViewSwitchButton按钮点赞按钮进度条TabLayout图标下拉刷新...
    皇小弟阅读 46,702评论 22 664
  • 最近做了一个Android UI相关开源项目库汇总,里面集合了OpenDigg 上的优质的Android开源项目库...
    OpenDigg阅读 17,157评论 6 223
  • http://www.daqianduan.com/2857.html html5学得好不好,看掌握多少标签 ht...
    栋栋晓阅读 194评论 0 0
  • 对于能随便把一个日子过出恋爱酸臭味的小情侣们来说,七夕无疑是最佳秀恩爱的好机会,只是可惜了我们这些单身贵族们,既要...
    半个格子阅读 551评论 0 1