溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在Android中實(shí)現(xiàn)切圓角

發(fā)布時(shí)間:2021-06-09 18:01:43 來源:億速云 閱讀:313 作者:Leah 欄目:移動(dòng)開發(fā)

本篇文章為大家展示了如何在Android中實(shí)現(xiàn)切圓角,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

1. 利用 Drawable 的 shape xml 實(shí)現(xiàn)

很多時(shí)候,我們可以自定義一些 drawable , 代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
 <corners android:radius="15dp"/>
 <solid android:color="#FFFFFF"/>
 <stroke android:width="1dp" android:color="#EBEBEB"/>
</shape>

其中,corners 就是我們實(shí)現(xiàn)的圓角,這里指定圓角的半徑為 15dp。

solid 是指填充色,這里為白色;

stroke 為drawable 的邊緣寬度和顏色設(shè)置,這里為 1dp 顏色比白色黑一點(diǎn)。

如果知識(shí)想要 「圓角」的話,可以不需要指定 stroke

然后在我們需要的 View 上,設(shè)置它的 background 為該 drawable 即可.

效果為:

如何在Android中實(shí)現(xiàn)切圓角
drawable 圓角

本質(zhì)是在 background 上加了圓角。

2. CardView 的圓角

CardView 是自帶圓角實(shí)現(xiàn)的,我們只需要在它的定義中加一句 app:cardCornerRadius="8dp" 即可。

代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

 <androidx.cardview.widget.CardView
 android:layout_width="256dp"
 android:layout_height="128dp"
 app:cardBackgroundColor="#0084FF"
 app:cardCornerRadius="16dp"
 app:layout_constraintBottom_toBottomOf="parent"
 app:layout_constraintEnd_toEndOf="parent"
 app:layout_constraintStart_toStartOf="parent"
 app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

設(shè)置該 CardView 圓角半徑為 16dp,

效果圖如下:

如何在Android中實(shí)現(xiàn)切圓角

cardView 圓角

3. fresco 中的 SimpleDraweeView

fresco 是一個(gè)強(qiáng)大的圖片庫(kù),里面的 SimpleDraweeView 常用來加載圖片。

SimpleDraweeView 實(shí)現(xiàn)了很多功能,其中一個(gè)就是實(shí)現(xiàn)了圓角屬性 roundedCornerRadius

實(shí)現(xiàn)代碼:

 <com.facebook.drawee.view.SimpleDraweeView
 android:layout_width="256dp"
 android:layout_height="128dp"
 app:layout_constraintBottom_toBottomOf="parent"
 app:layout_constraintEnd_toEndOf="parent"
 app:layout_constraintStart_toStartOf="parent"
 app:layout_constraintTop_toTopOf="parent"
 app:actualImageScaleType="centerCrop"
 app:roundedCornerRadius="3dp" />

這里設(shè)置圖片圓形邊角為 3dp

實(shí)現(xiàn)效果為:

如何在Android中實(shí)現(xiàn)切圓角

SimpleDraweeView 圓角

4. 利用 View 的 ViewOutlineProvider 實(shí)現(xiàn)圓角

這種實(shí)現(xiàn)方式,本質(zhì)上是修改了 View 的輪廓。

代碼實(shí)現(xiàn):

itemView.outlineProvider = object : ViewOutlineProvider() {
 override fun getOutline(view: View, outline: Outline) {
 outline.setRoundRect(0, 0, view.width, view.height, 5.dp.toFloat())
 }
}
// 打開開關(guān)
itemView.clipToOutline = true

為整個(gè) View 添加上圓角。

實(shí)現(xiàn)效果為:

如何在Android中實(shí)現(xiàn)切圓角

outlineProvider 圓角

這樣的好處是,不需要給里面的子 view 設(shè)置圓角,在最外層的 View 設(shè)置為圓角即可。

更大的好處是:比使用了第一種方式 drawable 的 xml 少了一層過度繪制。因?yàn)槭∪チ嗽O(shè)置的 background

利用 ViewOutlineProvider 的實(shí)現(xiàn)圓角,本質(zhì)上是在 View 的畫布上畫了一個(gè)圓角的矩形。

setRoundRect(xxx)

同時(shí) outline 還可以畫其他的一些內(nèi)容。

outline.setRect(xxx)// 畫矩形
outline.setRoundRect(xxx)// 畫圓角矩形
outline.setOval(xxx) // 畫橢圓

同時(shí),因?yàn)?outline.setRoundRect(0, 0, view.width, view.height, 5.dp.toFloat()) 是在一個(gè)矩形上畫的圓角。因?yàn)?,?dāng)我們的矩形減小或增大時(shí),有些圓角是沒有區(qū)域可畫,會(huì)形成部分圓角存在的情況。

既然提到了 ViewOutlineProvider , 那就得提一下 StateListAnimator 這個(gè)動(dòng)畫得效果, 感興趣得自己去搜索一下??蓞⒖?StateListAnimator

上述內(nèi)容就是如何在Android中實(shí)現(xiàn)切圓角,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI