国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android實現水波紋點擊效果

2019-12-12 03:31:45
字體:
來源:轉載
供稿:網友

Android實現水波紋點擊效果只在Android5.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. 這里是重點,<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>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 奉化市| 宁城县| 和政县| 余姚市| 桃园市| 堆龙德庆县| 河曲县| 佛山市| 红河县| 曲水县| 盐城市| 黄大仙区| 会泽县| 菏泽市| 阳城县| 临颍县| 固镇县| 苏尼特左旗| 云和县| 白玉县| 河北省| 大庆市| 南木林县| 淮滨县| 襄樊市| 修水县| 浪卡子县| 景东| 谢通门县| 仙桃市| 老河口市| 定陶县| 罗城| 都兰县| 金沙县| 东辽县| 司法| 万荣县| 精河县| 米脂县| 青铜峡市|