當(dāng)我們個人開發(fā)者做一款A(yù)ndroid應(yīng)用時,難免會為找不到好看的圖片資源而發(fā)愁,(不僅要寫代碼,還得要稍微會點PS什么的,唉!總之程序員什么都得要會一點。。。端好這碗飯可真不容易??!
)要不就是好看的圖片資源有了,從而導(dǎo)致我們的軟件過大!怎么辦吶?
這里我給大家推薦一種簡單實用的方法,就是顏色值強化使用!
通常我們在res里xml中可以定義UI布局,按鈕的按下效果,配置文件等,參閱博客:http://smallwoniu.blog.51cto.com/3911954/1248892,其實還可以自己定義控件的一些顯示屬性。
官方文檔
http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape
查閱Shape Drawable,在res/drawable/文件夾下創(chuàng)建
例子:
<?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>
這里我們可以看到這個xml中有好多貌似我們都沒用過的標(biāo)簽。。。(其實剛開始我也是在不知道什么地方看到的,一頭霧水,覺得好玩就要研究研究么~)。首先,我們先來看一下:
1.shape 形狀
作根標(biāo)簽,使用: android:shape=["rectangle" | "oval" | "line" | "ring"] >
值 | 描述 |
rectangle | 長方形,默認(rèn)值 |
oval | 橢圓 |
line | 水平直線,可以通過<stroke>標(biāo)簽來定義寬度 |
ring | 環(huán)形 |
2.corners 圓角
用于shape被定義成rectangle時,使用: android:radius="integer"為角的弧度,值越大角越圓。
值 | 描述 |
android:topRightRadius | 右上角 |
android:bottomLeftRadius | 右下角 |
android:topLeftRadius | 左上角 |
android:bottomRightRadius | 左下角 |
注:默認(rèn)值大于1才能顯示出圓角,0為沒有圓角。
3.gradient 漸變
指定shape的顏色值漸變,
android:type=["linear" | "radial" | "sweep"]
android:useLevel=["true" | "false"] />
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
文章題目:【移動開發(fā)】Android中不用圖片資源也能做出好看的界面-創(chuàng)新互聯(lián)
轉(zhuǎn)載來源:http://chinadenli.net/article34/ddeppe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、域名注冊、微信小程序、靜態(tài)網(wǎng)站、面包屑導(dǎo)航、網(wǎng)站設(shè)計公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容