欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

androidshape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果-創(chuàng)新互聯(lián)

這篇文章主要介紹了android shape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營(yíng)銷推廣、網(wǎng)站重做改版、麻章網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、html5、成都做商城網(wǎng)站、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為麻章等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

shape使用、漸變色、分割線、邊框、半透明、半透明陰影效果。

首先簡(jiǎn)單了解一下shape中常見的屬性。(詳細(xì)介紹參看 api文檔)

<?xml version="1.0" encoding="utf-8"?>
<shape
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape=["rectangle" | "oval" | "line" | "ring"] > --- 默認(rèn)為rectangle
 <corners -- shape=“rectangle”時(shí)使用, 
  android:radius="integer" -- 半徑,會(huì)被下邊的屬性覆蓋,默認(rèn)為1dp,
  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 -- 指定大小,一般用在imageview配合scaleType屬性使用。大小一般會(huì)適配滴
  android:width="integer"
  android:height="integer" />
 <solid -- 填充顏色,可是是十六進(jìn)制顏色。(比如想設(shè)置半透明效果,直接使用十六就只就OK)
  android:color="color" />
 <stroke -- 指定邊框,border,dashWidth和dashGap有一個(gè)為0dp則為實(shí)線
  android:width="integer"
  android:color="color"
  android:dashWidth="integer" -- 虛線寬度
  android:dashGap="integer" /> -- 虛線間隔寬度
</shape>

注意:

<corners>

1、android:radius,半徑,會(huì)被下邊的單個(gè)角度半徑屬性覆蓋,默認(rèn)為1dp,

2、在使用時(shí),如果單獨(dú)設(shè)置四個(gè)角度,又大小不一致時(shí),eclipse的graphics preview會(huì)報(bào)錯(cuò)。但是直接真機(jī)運(yùn)行即可。(比如實(shí)線上邊直角,下邊屈角的效果)

<size>

Note: The shape scales to the size of the container View proportionate to the dimensions defined here, by default. When you use the shape in an ImageView, you can restrict scaling by setting the android:scaleType to "center"

舉個(gè)栗子:

1、漸變色 res/drawable/gradient_box.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="rectangle">
 <gradient
  android:startColor="#FFFF0000"
  android:endColor="#80FF00FF"
  android:angle="45"/>
 <padding android:left="7dp"
  android:top="7dp"
  android:right="7dp"
  android:bottom="7dp" />
 <corners android:radius="8dp" />
</shape>

如圖:

android shape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果

2、白色邊框、半透明效果

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="rectangle" >
 <corners android:radius="16dp" />
 <!-- 這是半透明,還可以設(shè)置全透明,那就是白色邊框的效果了 -->
 <solid android:color="#80065e8d" />
 <stroke
  android:dashGap="0dp"
  android:width="4dp"
  android:color="@android:color/white" />
</shape>

如圖:

android shape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果   android shape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果

3、分割線效果:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="line" >
 <stroke
  android:width="4dp"
  android:color="@android:color/black" />
</shape>

如圖:

android shape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果

4、單邊屈角效果

<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">
 
 <corners 
  android:topLeftRadius="5dp"
  android:topRightRadius="5dp"
  android:bottomLeftRadius="30dp"
  android:bottomRightRadius="30dp"/>
 
 <!-- 這是半透明,還可以設(shè)置全透明,那就是白色邊框的效果了 -->
 <solid android:color="#ff065e8d" />
 
 <stroke
  android:dashGap="0dp"
  android:width="4dp"
  android:color="@android:color/white" />
 
</shape>

如圖:

android shape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“android shape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!

新聞名稱:androidshape如何實(shí)現(xiàn)漸變色、分割線、邊框、半透明陰影效果-創(chuàng)新互聯(lián)
URL鏈接:http://aaarwkj.com/article24/cccoce.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、關(guān)鍵詞優(yōu)化建站公司、網(wǎng)站設(shè)計(jì)公司、全網(wǎng)營(yíng)銷推廣、品牌網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作
欧美乱码中文字幕在线观看| 看看永久成人免费视频| 婷婷网色偷偷亚洲男人| 91人妻精品丰满少妇区| 久久超碰一区二区三区| 青青草原成年人免费看| 久久久精品国产亚洲av网黑人| 青青草原在线观看网站| 91精品国内手机在线高清| 亚洲国产精品天堂av在线播放| 日本精品a秘在线观看| 日本午夜视频一区二区| 欧美精品国产精品久久| 欧美午夜精品一二三区| 少妇性生活视频免费观看| 国产精品亚洲欧美日韩综合| 永久免费成人在线视频| 亚洲一区二区三区av电影| 国内揄拍国内精品少妇国| 日韩av有码在线播放| 91国产视频在线观看免费| 日韩精品中文女同在线播放| 亚洲成人午夜激情的三级网| 日本熟妇一区二区三区在线视频 | 日韩黄色一级片在线观看| 91精品国产91久久综合福利| 色呦呦视频在线免费观看| 欧美国产免费高清视频| 久久精品熟女亚洲av色| 说中文字幕的黄色大网站| 天堂av在线资源观看| 99热这里只有精品三区| 一区二区三区欧美日| 免费欧美一级黄片播放| 欧美日韩电影一区二区三区在线观看| 成人av免费高清在线播放| 久久久国产精品视频一区| 国产传媒在线免费播放视频| 国产黄色片子在线观看| 久久精品久久久精品| 国模一区二区三区视频|