您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“怎么實現(xiàn)Android shape半圓與1/4圓”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“怎么實現(xiàn)Android shape半圓與1/4圓”吧!
size:寬高比1:2是垂直半圓,寬高比2:1是水平半圓。
corners:4個角的任意兩個角度(不小于寬高最小值)相同,且在同一邊(上下左右)
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!--漸變填充--> <gradient android:endColor="#3bf8fffd" android:startColor="#fff3fefc" android:type="linear" android:angle="135" android:useLevel="true" /> <!--單色填充--> <!--<solid android:color="#ffffff"/>--> <!--寬高比1:2是垂直半圓,寬高比2:1是水平半圓--> <size android:width="20dp" android:height="40dp" /> <!--4個角的任意兩個角度(不小于寬高最小值)相同,且在同一邊(上下左右) 如bottomLeftRadius,topLeftRadius都在左邊,則為左半圓--> <corners android:bottomLeftRadius="20dp" android:bottomRightRadius="0dp" android:topLeftRadius="20dp" android:topRightRadius="0dp" /> </shape>
size:寬高比1:1是1/4圓
corners:4個角的任意一個角度,不小于寬高值
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!--漸變填充--> <gradient android:angle="90" android:endColor="#3bf8fffd" android:startColor="#fff3fefc" android:type="linear" android:useLevel="true" /> <!--單色填充--> <!--<solid android:color="#ffffff"/>--> <!--寬高比1:1是1/4圓--> <size android:width="55dp" android:height="55dp" /> <!--4個角的任意一個角度,不小于寬高值--> <corners android:bottomLeftRadius="0dp" android:bottomRightRadius="0dp" android:topLeftRadius="55dp" android:topRightRadius="0dp" /> </shape>
到此,相信大家對“怎么實現(xiàn)Android shape半圓與1/4圓”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。