Android 水波紋點擊效果(Ripple Effect)


 

上周Android發布了Android M的Preview版本.但想必Android5.0很多炫酷效果,多數開發者還沒有使用過,那更不要說廣大用戶了.

本文介紹的是Android5.0中其中一個炫酷的效果,點擊水波紋擴散效果(Ripple Effect).

以下介紹的實現方式都是調用Android5.0的新API,並非自定義實現,所以支持在Android5.0的設備.

而大家想兼容低系統版本的話,就需要新建v21(即Android5.0)的Resource Directory.

 

圓角背景的水波紋效果(如上圖)

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. 這里是重點,<ripple>是API21才有的新Tag,正是實現水波紋效果的;

    其中<ripple android:color="#FF21272B" .... />這個是指定水波紋的顏色.

    而<item />里面的東西,我們都很熟悉,就是普通的定義一個帶圓角的背景.

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. 這是Activity的布局xml;

<Button android:background="@drawable/ripple_bg"... />直接使用ripple_bg作為背景.

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity">

    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" />

    <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/ripple_bg" android:text="@string/hello_world" />
</LinearLayout>

 

參考文章: Android Ripples With Rounded Corners


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM