AndroidWorldAndroid精选android收集

别找了啦,俺都藏在这里 Material Design控件军火库

2017-01-09  本文已影响4645人  香脆的大鸡排

别找了啦,俺都藏在这里 Material Design 控件大全 【简单说】

本篇适合哪些人?

本篇包含

我先抽一口,再和你讲. 啊~舒坦.



MaterialDrawer

https://github.com/mikepenz/MaterialDrawer
提供比NavigationView 更好的交互效果的侧滑菜单项

MaterialDrawer.png

material-menu

提供带切换效果的Ioc
github:material-menu

material-menu.gif

CoordinatorLayout && AppBarLayout

CollapsingToolbarLayout

实现视差滚动动画和Toolbar滚动

CollapsingToolbarLayout .gif
CoordinatorLayout与CollapsingToolbarLayout实现视差滚动动画和Toolbar滚动

DrawerLayout

提供类似 SlidingMenu的官方支持库(侧滑菜单)

1.gif
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.DrawerLayout
        android:id="@+id/simple_navigation_drawer"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <!--内容视图-->
        <include
            android:id="@+id/tv_content"
            layout="@layout/drawer_content_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <!--左侧滑菜单栏-->
        <include
            layout="@layout/drawer_menu_layout"
            android:layout_width="250dp"
            android:layout_height="match_parent"
            android:layout_gravity="start" />

        <!--右侧滑菜单栏-->
        <include
            layout="@layout/drawer_menu_layout"
            android:layout_width="250dp"
            android:layout_height="match_parent"
            android:layout_gravity="end" />


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


</RelativeLayout>

--

discreteSeekBar

https://github.com/AnderWeb/discreteSeekBar
百分比滑动条


MaterialDesignLibrary

https://github.com/navasmdc/MaterialDesignLibrary
一个支持兼容到android2.2 的依赖库.很强大. 详情见github.


material

https://github.com/rey5137/material
一大波封装完整的组件 直接调用就可以了

更多设计请参考:最全面的 Material Design 学习资料


如何下次找到我?

上一篇 下一篇

猜你喜欢

热点阅读