Android實(shí)現(xiàn)波浪線效果(xml bitmap)
我們要實(shí)現(xiàn)的效果如下:

在這之前先帶大家了解一下xml bitmap,何為XML Bitmap?
XML Bitmap 是一個(gè)用XML定義的文件放在資源目錄,定義的對(duì)象是圖片,為bitmap定義別名,這個(gè)文件可以給bitmap定義一些額外的屬性。例如:抖動(dòng)。
1、文件存放位置
res/drawable/filename.xml
2、語(yǔ)法
<?xml version="1.0" encoding="utf-8"?>
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@[package:]drawable/drawable_resource"
android:antialias=["true" | "false"]
android:dither=["true" | "false"]
android:filter=["true" | "false"]
android:gravity=["top" | "bottom" | "left" | "right" | "center_vertical" |
"fill_vertical" | "center_horizontal" | "fill_horizontal" |
"center" | "fill" | "clip_vertical" | "clip_horizontal"]
android:tileMode=["disabled" | "clamp" | "repeat" | "mirror"] />
例子:
<RelativeLayout 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" tools:context=".MainActivity" > <!-- 與默認(rèn)情況(@drawable/btn_default_pressed_holo_light)有差別 --> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:background="@drawable/bm" android:text="sssssssssssssssssss" /> </RelativeLayout> <RelativeLayout 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" tools:context=".MainActivity" > <!-- 與默認(rèn)情況(@drawable/btn_default_pressed_holo_light)有差別 --> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:background="@drawable/bm" android:text="sssssssssssssssssss" /> </RelativeLayout>
效果圖:
默認(rèn)(@drawable/btn_default_pressed_holo_light):

引用(\@drawable/bm):

從截圖上就可以看出來(lái)差別。
titileMode="repeat":

之后找了一些關(guān)于實(shí)現(xiàn)波浪線的方法,總感覺(jué)不大滿意,常見(jiàn)的方法分享給大家:
1、直接搞一個(gè)這樣的波浪線的切圖
這種方式最簡(jiǎn)單,但是劣勢(shì)也非常明顯,如果view的寬度過(guò)大,則會(huì)出現(xiàn)圖片變形,如下圖所示:

如果過(guò)小則如下:

要求不高的話,這樣勉強(qiáng)可以蒙混過(guò)關(guān),但是追求完美的話,這樣的效果顯然很不給力
2、自定義控件繪制
這個(gè)方法的確可以達(dá)到不錯(cuò)的效果,但是實(shí)現(xiàn)比較麻煩。我也看到有朋友搞過(guò),
3、用xml的bitmap標(biāo)簽實(shí)現(xiàn)波浪線效果
首頁(yè)要搞一個(gè)周期的波浪線,即包括波峰和波谷,如下圖所示:
wave_item:

然后水平方向上平鋪,從而實(shí)現(xiàn)波浪線效果,代碼如下:
wave.xml:
<?xml version="1.0" encoding="utf-8"?> <bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:antialias="true" android:src="@drawable/wave_item" android:tileMode="repeat" />
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:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingTop="@dimen/activity_vertical_margin" > <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/wave" /> </LinearLayout>
注意:這個(gè)ImageView通過(guò)background顯示圖片,src是顯示不了這樣的效果的。
希望本文所述對(duì)大家學(xué)習(xí)Android軟件編程有所幫助。
相關(guān)文章
viewpager+photoview實(shí)現(xiàn)圖片查看器
這篇文章主要為大家詳細(xì)介紹了viewpager+photoview實(shí)現(xiàn)圖片查看器,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-12-12
Android短信發(fā)送器實(shí)現(xiàn)方法
這篇文章主要介紹了Android短信發(fā)送器實(shí)現(xiàn)方法,以實(shí)例形式較為詳細(xì)的分析了Android短信發(fā)送器從界面布局到功能實(shí)現(xiàn)的完整步驟與相關(guān)技巧,需要的朋友可以參考下2015-09-09
Android五種隱藏狀態(tài)欄和標(biāo)題欄的方法
這篇文章主要介紹了Android五種隱藏狀態(tài)欄和標(biāo)題欄的方法的相關(guān)資料,需要的朋友可以參考下2017-05-05
android 使用kotlin 實(shí)現(xiàn)點(diǎn)擊更換全局語(yǔ)言(中日英切換)
這篇文章主要介紹了android kotlin 點(diǎn)擊更換全局語(yǔ)言的實(shí)現(xiàn)方法,這里主要介紹中日英切換,需要的朋友可以參考下2019-11-11
解決android設(shè)備斷電重啟后WIFI不能自動(dòng)重連的BUG(收藏)
這篇文章主要介紹了解決android設(shè)備斷電重啟后WIFI不能自動(dòng)重連的BUG,本文給出了問(wèn)題描述及分析過(guò)程,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-11-11
Android實(shí)現(xiàn)底部圖片選擇Dialog
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)底部圖片選擇Dialog,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-10-10
Android使用ViewPager實(shí)現(xiàn)滾動(dòng)廣告
這篇文章主要為大家詳細(xì)介紹了Android使用ViewPager實(shí)現(xiàn)滾動(dòng)廣告,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-11-11
Android實(shí)現(xiàn)可播放GIF動(dòng)畫的ImageView
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)可播放GIF動(dòng)畫的ImageView,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-09-09

