這篇文章將為大家詳細(xì)講解有關(guān)Android中怎么利用shape呈現(xiàn)出特殊效果,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營銷、網(wǎng)站重做改版、永吉網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5、商城建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為永吉等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。使用到的布局文件
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="#ffffff" android:gravity="center_horizontal"> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000000" android:text="未使用效果" android:layout_marginTop="30dp" /> <EditText android:id="@+id/edit" android:layout_width="280dp" android:layout_height="wrap_content" android:textColor="#000000" android:text="未使用效果 未使用效果 未使用效果 未使用效果 未使用效果 未使用效果" android:cursorVisible="true" /> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000000" android:text="使用效果" android:layout_marginTop="10dp" /> <EditText android:id="@+id/edit2" android:layout_width="280dp" android:layout_height="wrap_content" android:textColor="#000000" android:text="使用效果 使用效果 使用效果 使用效果 使用效果 使用效果 使用效果 使用效果" android:background="@drawable/shape" android:cursorVisible="true" /> </LinearLayout>
使用到的shape文件
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <corners android:radius="10dp" /> <gradient android:startColor="#33CC00" android:endColor="#666600" android:angle="45" /> <padding android:left="5dp" android:top="5dp" android:right="5dp" android:bottom="5dp" /> <stroke android:width="3dp" android:color="#FF3300" /> </shape>
在這里主要說一下shape文件中各項(xiàng)的功能
gradient主要設(shè)置背景顏色漸變。startColor為起始顏色值,endColor為結(jié)束顏色值,angle為漸變角度
padding主要設(shè)置組件里內(nèi)容距離組件內(nèi)邊框的間距
stroke主要設(shè)置組件的邊框。width為邊框?qū)挾?,color為邊框顏色
關(guān)于Android中怎么利用shape呈現(xiàn)出特殊效果就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
本文標(biāo)題:Android中怎么利用shape呈現(xiàn)出特殊效果-創(chuàng)新互聯(lián)
文章出自:http://jinyejixie.com/article40/ccsceo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、微信小程序、企業(yè)網(wǎng)站制作、虛擬主機(jī)、網(wǎng)站內(nèi)鏈、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容