本文出自 “阿敏其人” 簡(jiǎn)書(shū)博客,轉(zhuǎn)載或引用請(qǐng)注明出處。
ShapeDrawable 一種創(chuàng)建的Drawable脚乡,可以理解為通過(guò)顏色來(lái)狗仔的圖形,它既可以是純色的圖形傻粘,也可以是具有漸變效果的圖形每窖。
ShapeDrawable的xml的根元素是 shape
一、語(yǔ)法
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape=["rectangle" | "oval" | "line" | "ring"] >
<corners
android:radius="integer"
android:topLeftRadius="integer"
android:topRightRadius="integer"
android:bottomLeftRadius="integer"
android:bottomRightRadius="integer" />
<gradient
android:angle="integer"
android:centerX="integer"
android:centerY="integer"
android:centerColor="integer"
android:endColor="color"
android:gradientRadius="integer"
android:startColor="color"
android:type=["linear" | "radial" | "sweep"]
android:useLevel=["true" | "false"] />
<padding
android:left="integer"
android:top="integer"
android:right="integer"
android:bottom="integer" />
<size
android:width="integer"
android:height="integer" />
<solid
android:color="color" />
<stroke
android:width="integer"
android:color="color"
android:dashWidth="integer"
android:dashGap="integer" />
</shape>
.
.
二弦悉、子節(jié)點(diǎn)
分別這么幾個(gè):corners(角度)窒典、gradient(漸變)、padding(距離)稽莉、size(大衅僦尽)、solid(純色填充)污秆、stroke(描邊)劈猪。
.
.
根元素:shape
- android:shape
表示圖形的形狀,有四種選項(xiàng)
rectabgle 矩形
??oval 橢圓
??line 橫線
??ring 圓環(huán)
針對(duì)line和ring
四個(gè)當(dāng)中良拼, line 和 ring 一定需要通過(guò) <stroke> 標(biāo)簽來(lái)指定 線的寬和和顏色信息 等战得。
針對(duì)ring有5個(gè)特殊的屬性
值 | 作用 |
---|---|
android:innerRadius | 圓內(nèi)的內(nèi)半徑,當(dāng)和innerRadiusRatio同時(shí)存在時(shí)庸推,以innerRadius為準(zhǔn) |
android:thickness | 厚度常侦, 圓環(huán)的厚度 = 外半徑 - 內(nèi)半徑 ,當(dāng)和thicknessRatio一起存在時(shí)贬媒,以thickness為準(zhǔn) |
innerRadiusRatio | 內(nèi)半徑在占整個(gè)Drawable寬度的比例聋亡,默認(rèn)值是9。如果為n际乘,那么 內(nèi)半徑 = 寬度 / n |
android:thicknessRatio | 厚度占整個(gè)Drawable的寬度的比例坡倔,默認(rèn)值是3。如果為n脖含,那么 厚度 = 寬度 / n 罪塔。 |
android:useLevel | 一般都應(yīng)該使用false,否則可能無(wú)法達(dá)到預(yù)期的效果器赞,除非他被用來(lái)作為 LevelListDrawable 來(lái)使用 |
.
.
<corners> 角度 ( 只適用于 shape )
表示shape圖形四個(gè)交的角度垢袱,即四個(gè)角的圓角程度。單位是px港柜,他有5個(gè)屬性
| corners的5個(gè)屬性 | 作用 |
| android:radius | 為四個(gè)角同時(shí)設(shè)定相同的角度请契,優(yōu)先級(jí)低,會(huì)被下面幾個(gè)覆蓋(因?yàn)槿思沂菍iT指定的)|
|android:topLeftRadius | 左上角的角度 |
| android:topRightRadius | 右上角的角度 |
| android:bottomLeftRadius | 左下角的角度 |
| android:bottomRightRadius | 右下角的角度 |
注意:每個(gè)圓角半徑值都必須大于1夏醉,否側(cè)就沒(méi)有圓角爽锥。
.
.
<solid> 純色填充
表示純色填充,利用 android:color 就可以指定shape的顏色畔柔。
<gradient> 漸變效果 (與solid互斥氯夷,純色或者漸變只能要一個(gè))
- android:angle —— 漸變的角度,默認(rèn)是0靶擦,其值必須是45的整數(shù)倍腮考。
0表示從左邊到右
90表示從上到下雇毫。具體效果隨著角度的調(diào)整而產(chǎn)生變化,角度影響漸變方向踩蔚。 - android:centerX —— 漸變中心的橫坐標(biāo)點(diǎn)
- android:centerY —— 漸變中心的縱坐標(biāo)點(diǎn)
- android:startColor —— 漸變色的起始色
- android:centerColor —— 漸變色的中間色
- android:endColor —— 漸變色的結(jié)束色
- android:type —— 漸變的類型棚放,分3種,linear(線性漸變)馅闽,radio(徑向漸變)飘蚯,sweep(掃描線漸變),默認(rèn)值是 線性漸變 福也。
- android:gradientRadius —— 漸變的半徑(僅當(dāng) android:type 為radio時(shí)有效)
- android:useLevel —— 一般為false局骤,當(dāng)Drawable作為StateListDrawable時(shí)有效。
.
.
<stroke> 描邊
stroke的屬性 | 作用 |
---|---|
android:width | 描邊的寬度暴凑,越大則shape的邊緣線越粗 |
android:color | 描邊的顏色 |
android:dashWidth | 虛線的寬度 |
android:dashGap | 虛線的空隙的間隔 |
注:如果 android:dashWidth 和 android:dashGap 兩者有任意一個(gè)為0峦甩,那么虛線效果就無(wú)法顯示。
.
.
<padding>
這個(gè)沒(méi)什么好講的搬设,就是padding穴店,分上下左右
.
.
<size> shape大小 (只是大小并不是指定了固定了大小)
android:width 指定shape寬
android:height 指定shape高
嚴(yán)格來(lái)說(shuō)shape沒(méi)有寬高拿穴,但是我們指定size就有了所謂的寬高泣洞。
當(dāng)時(shí)當(dāng)shape作為View 的背景的時(shí)候,shape還是會(huì)被拉伸的默色,所以這個(gè)寬高并不是指定多少就一定多少(對(duì)于Drawable都是沒(méi)有絕對(duì)的寬高的)
三球凰、Demo
首先先來(lái)四個(gè)最簡(jiǎn)單的圖像,矩形腿宰、橢圓呕诉、線,圓形吃度。
先上x(chóng)ml代碼甩挫,后上展示圖。
線 simple_line.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line"
>
<!--line一定需要描邊stroke-->
<stroke
android:width="10dp"
android:color="#0000ff"
/>
</shape>
.
.
橢圓 simple_oval.xml
<?xml version="1.0" encoding="utf-8"?>
<!--橢圓-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
>
<solid android:color="#00ff00"/>
<corners android:radius="5px"/>
</shape>
.
.
矩形 simple_rectagle.xml
<?xml version="1.0" encoding="utf-8"?>
<!--橢圓-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
>
<solid android:color="#00ff00"/>
<corners android:radius="5px"/>
</shape>
.
.
圓形 simple_ring.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- 安卓的圓一般來(lái)說(shuō) 外半徑 = 內(nèi)半徑 + 厚度-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring"
android:useLevel="false"
android:innerRadius="20dp"
android:thickness="3dp"
>
<stroke
android:color="#ff0000" />
<solid android:color="#ff0000" />
</shape>
以上就是基本圖形最基本的使用。
下面結(jié)合幾個(gè)節(jié)點(diǎn)做一些demo
圓形的點(diǎn)擊變換顏色
<?xml version="1.0" encoding="utf-8"?>
<!--別看這里我們使用的是ovrl(橢圓) ,但是我們得到可是 圓形 的點(diǎn)擊效果-->
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape android:shape="oval">
<solid
android:color="#ff0000" />
<stroke
android:width="4dp"
android:color="#294736" />
</shape>
</item>
<item >
<shape android:shape="oval">
<solid
android:color="#848374" />
<stroke
android:width="4dp"
android:color="#745863" />
</shape>
</item>
</selector>
.
.
Edittext的背景框和焦點(diǎn)變化
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_window_focused="false">
<shape android:shape="rectangle">
<solid
android:color="#FFFFFFFF"/>
<corners
android:radius="3dp"/>
<padding
android:left="10dp"
android:right="10dp"/>
<stroke
android:width="1dp"
android:color="#BDC7D8"/>
</shape>
</item>
<item android:state_focused="true" >
<shape android:shape="rectangle" >
<solid
android:color="#FFFFFFFF"/>
<corners
android:radius="3dp"/>
<padding
android:left="10dp"
android:right="10dp"/>
<stroke
android:width="1dp"
android:color="#728ea3"/>
</shape>
</item>
</selector>
如果我想畫(huà)一個(gè)矩形厚棵,只有底邊怎么辦蕉堰?
就好像在TextView里面狸驳,我們需要底線,“我們是有底線的TextView”,但是呢,我又不想弄復(fù)制的布局法精,弄一個(gè)背景豈不是方便多了?
嗯,你可以這么做搂蜓,但是單純的shape是實(shí)現(xiàn)不了的狼荞,需要用到LayerDrawable。原理就是shape組合排列帮碰。
有興趣可以跳轉(zhuǎn)一下——Drawable子類之——LayerDrawable (圖層疊加)
了解更多的Drawable分類 Drawable圖像資源抽象類
本篇完粘秆。