studio项目地址:https://github.com/keithellis/MaterialWidget

修改后的eclipse项目地址:

修改后的eclipse项目 Demo地址:

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/content_background"
android:orientation="vertical" > <!-- material dedign 效果的tab切换效果 --> <com.material.widget.TabIndicator
android:id="@+id/indicator"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/primary_color" /> <android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" /> </LinearLayout>
color.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="content_background">#f8f8f8</color>
<color name="primary_color">#ff3f51b5</color>
</resources>

TabIndicator --tab切换的控件:

并且点击page1 page2等有涟漪效果

效果如图:

------------------------------------------------------------------------------------------------

Switch控件,不是应该是switchbutton吗(纠结中)
 <com.material.widget.Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

效果如图:

-----------------------------------------------------------------------------------------------

RadioButton点击也是有涟漪效果的:

<com.material.widget.RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

效果如图:

---------------------------------------------------------------------------------------------

Check Box

<com.material.widget.CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

效果:

-------------------------------------------------------------------------------------------

Circular Progress 圆形进度条:

<com.material.widget.CircularProgress
android:layout_marginTop="10dp"
widget:circular_progress_size="Normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

-----------------------------------------------------------------------------------------

Circle Button 圆形按钮:

<com.material.widget.CircleButton
android:id="@+id/circle_button"
widget:circle_icon="@drawable/ic_add"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

-----------------------------------------------------------------------------------------

Paper Button 纸片话按钮:

<com.material.widget.PaperButton
widget:paper_text="Paper Button"
android:layout_width="160dp"
android:layout_height="54dp"/>

-------------------------------------------------------------------------------------

线性进度条LinearProgress:

<com.material.widget.LinearProgress
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"
android:layout_marginTop="10dp" />

效果:

-----------------------------------------------------------------------------------

Slider:

<com.material.widget.Slider
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp" />

MaterialWidgetLibrary 学习的更多相关文章

  1. 从直播编程到直播教育:LiveEdu.tv开启多元化的在线学习直播时代

    2015年9月,一个叫Livecoding.tv的网站在互联网上引起了编程界的注意.缘于Pingwest品玩的一位编辑在上网时无意中发现了这个网站,并写了一篇文章<一个比直播睡觉更奇怪的网站:直 ...

  2. Angular2学习笔记(1)

    Angular2学习笔记(1) 1. 写在前面 之前基于Electron写过一个Markdown编辑器.就其功能而言,主要功能已经实现,一些小的不影响使用的功能由于时间关系还没有完成:但就代码而言,之 ...

  3. ABP入门系列(1)——学习Abp框架之实操演练

    作为.Net工地搬砖长工一名,一直致力于挖坑(Bug)填坑(Debug),但技术却不见长进.也曾热情于新技术的学习,憧憬过成为技术大拿.从前端到后端,从bootstrap到javascript,从py ...

  4. 消息队列——RabbitMQ学习笔记

    消息队列--RabbitMQ学习笔记 1. 写在前面 昨天简单学习了一个消息队列项目--RabbitMQ,今天趁热打铁,将学到的东西记录下来. 学习的资料主要是官网给出的6个基本的消息发送/接收模型, ...

  5. js学习笔记:webpack基础入门(一)

    之前听说过webpack,今天想正式的接触一下,先跟着webpack的官方用户指南走: 在这里有: 如何安装webpack 如何使用webpack 如何使用loader 如何使用webpack的开发者 ...

  6. Unity3d学习 制作地形

    这周学习了如何在unity中制作地形,就是在一个Terrain的对象上盖几座小山,在山底种几棵树,那就讲一下如何完成上述内容. 1.在新键得项目的游戏的Hierarchy目录中新键一个Terrain对 ...

  7. 《Django By Example》第四章 中文 翻译 (个人学习,渣翻)

    书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:祝大家新年快乐,这次带来<D ...

  8. 菜鸟Python学习笔记第一天:关于一些函数库的使用

    2017年1月3日 星期二 大一学习一门新的计算机语言真的很难,有时候连函数拼写出错查错都能查半天,没办法,谁让我英语太渣. 关于计算机语言的学习我想还是从C语言学习开始为好,Python有很多语言的 ...

  9. 多线程爬坑之路-学习多线程需要来了解哪些东西?(concurrent并发包的数据结构和线程池,Locks锁,Atomic原子类)

    前言:刚学习了一段机器学习,最近需要重构一个java项目,又赶过来看java.大多是线程代码,没办法,那时候总觉得多线程是个很难的部分很少用到,所以一直没下决定去啃,那些年留下的坑,总是得自己跳进去填 ...

随机推荐

  1. ejabberd模块开发

    参考: http://anders.conbere.org/journal/ http://www.process-one.net/en/wiki/ejabberd_module_developmen ...

  2. K - Balance(动态规划专项)

    K - Balance Time Limit:1000MS     Memory Limit:30000KB     64bit IO Format:%I64d & %I64u Submit  ...

  3. mongoDB2--mongoDB的下载和安装。

    mongdb安装(1)安装准备我们在Linux环境下来安装mongodb,如果没有Linux操作系统的童鞋,可以使用Vmware虚拟机安装一个Linux虚拟环境来学习.这里就不再赘述.我们到mongo ...

  4. C# WebService 概念,创建及引用调用

    1.1.Web Service基本概念 Web Service也叫XML Web Service WebService是一种可以接收从Internet或者Intranet上的其它系统中传递过来的请求, ...

  5. 用shell获得hadoop中mapreduce任务运行结果的状态

    在近期的工作中,我需要用脚本来运行mapreduce,并且要判断运行的结果,根据结果来做下一步的动作. 开始我想到shell中获得上一条命令运行结果的方法,即判断"$?"的值 if ...

  6. iOS模拟器沙盒使用推荐

    iOS沙盒路径的查看和使用 1.模拟器沙盒目录文件都在个人用户名文件夹下的一个隐藏文件夹里,中文叫资源库,他的目录其实是Library.因为应用是在沙箱(sandbox)中的,在文件读写权限上受到限制 ...

  7. C# 16位的GUDI

    引用:  http://www.cnblogs.com/lcwzj/archive/2009/04/16/1436992.html 当我们想要获得一个唯一的key的时候,通常会想到GUID.这个key ...

  8. hadoop三个配置文件的参数含义说明core-site.xml,hdfs-site.xml,mapred-site.xml

    配置hadoop,主要是配置core-site.xml,hdfs-site.xml,mapred-site.xml三个配置文件,默认下来,这些配置文件都是空的,所以很难知道这些配置文件有哪些配置可以生 ...

  9. AC_CONFIG_HEADER

    configure.in里有宏AC_CONFIG_HEADER()时用. AC_CONFIG_HEADER宏用于生成config.h文件,以便autoheader使用.

  10. 用 gulp.spritesmith 自动化雪碧图

    一.安装nodejs之后,要设置两个环境变量 在 计算机右击属性---高级系统设置---高级---环境变量 打开窗口 新建2个环境变量,它们的值分别是nodejs根目录下的node_modules路径 ...