敢说敢作敢为, 无怨无恨无悔。这篇文章主要讲述android 5.0 水波纹 实现相关的知识,希望能为你提供帮助。
1. 定义一个普通圆角背景的xml;
rounded_corners.xml
< ?xml version="1.0" encoding="utf-8"?> < shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> < solid android:color="#FFFFFF" /> < corners android:radius="4dp" /> < /shape>
2.水波纹效果的xml ripple_bg.xml:
< ?xml version="1.0" encoding="utf-8"?> < ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="#FF21272B"> < item> < shape android:shape="rectangle"> < solid android:color="#FFFFFF" /> < corners android:radius="4dp" /> < /shape> < /item> < item android:drawable="@drawable/rounded_corners" /> < /ripple>
3 在布局xml中使用它
< Button android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/ripple_bg" android:text="@string/hello_world" />
这个只能在5.0版本之上的手机中使用,5.0之下的只能自己绘制,听说
而大家想兼容低系统版本的话,就需要新建v21(即Android5.0)的Resource Directory.
【android 5.0 水波纹 实现】还没做出基本的低版本解决方案来
推荐阅读
- Android -- 是时候来了解一波EventBus了
- sketch文本、对齐和SVG – Sketch入门UI设计教程
- sketch画板和形状 – Sketch入门UI设计教程
- 最新面试必备!65个精选React面试题合集 – ReactJS实战教程
- VISA Inc.面试经验(校园内)
- jQuery如何使用css()方法(代码示例)
- 算法(如何实现字符串转换的就地算法())
- 三星面试经验分享(三星研究院校园,诺伊达)
- Zoho面试分享|S2(校园内)