在開(kāi)發(fā)中經(jīng)常會(huì)用到shape標(biāo)簽來(lái)定義控件的背景,shape標(biāo)簽總共有四個(gè)圖形選項(xiàng)硫痰,分別是rectangle(矩形)璧尸,oval(橢圓),line(橫線)和ring(圓環(huán)) 睡腿。
不設(shè)置默認(rèn)rectangle(矩形)
相關(guān)屬性:
- android:innerRadius 尺寸康谆,內(nèi)環(huán)的半徑。
- android:innerRadiusRatio 浮點(diǎn)型嫉到,以環(huán)的寬度比率來(lái)表示內(nèi)環(huán)的半徑沃暗,
- android:thickness 尺寸,環(huán)的厚度
- android:thicknessRatio 浮點(diǎn)型何恶,以環(huán)的寬度比率來(lái)表示環(huán)的厚度孽锥,例如,如果android:thicknessRatio="2",
- android:useLevel boolean值惜辑,如果當(dāng)做是LevelListDrawable使用時(shí)值為true唬涧,否則為false.
下面的屬性只有在android:shape="ring"時(shí)可用,其他的屬性。
示例如下:
創(chuàng)建 drawable-》New-》Drawable resource file 資源文件
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring"
android:innerRadius="100dp"
android:thickness="10dp"
android:useLevel="false">
<solid android:color="#ff00ff"/>
</shape>
二盛撑、基本屬性
基本屬性(corners碎节、gradient、padding抵卫、size狮荔、solid、stroke)
1介粘、corners(角)
- android:radius="dimension" 全部的圓角半徑
- android:bottomLeftRadius="dimension" 左下角的圓角半徑
- android:bottomRightRadius="dimension" 右下角的圓角半徑
- android:topLeftRadius="dimension" 左上角的圓角半徑
- android:topRightRadius="dimension" 右上角的圓角半徑
示例如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners
android:bottomLeftRadius="12dp"
android:bottomRightRadius="16dp"
android:radius="20dp"
android:topLeftRadius="4dp"
android:topRightRadius="8dp" />
<solid android:color="#ffff00" />
</shape>
2殖氏、solid(用以指定內(nèi)部填充色)
只有一個(gè)屬性
- android:color="color" 指定填充的顏色
上個(gè)示例中有體現(xiàn)
3、gradient(用以定義漸變色姻采,可以定義兩色漸變和三色漸變雅采,及漸變樣式)
它的屬性有下面幾個(gè):