效果圖:
代碼:
一、xml方式
- 代碼: shape_rec_blue.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="1dp"
android:color="#418DF9" />
<corners android:radius="4dp" />
</shape>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#418DF9" />
<corners android:radius="4dp" />
</shape>
- 使用
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F3F3F3"
android:orientation="vertical">
<LinearLayout
android:id="@+id/ll_bottom_split"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shape_rec_blue"
android:layout_margin="10dp"
android:layout_gravity="center"
android:orientation="horizontal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30dp"
android:text=" 測試測試測試測試 "/>
</LinearLayout>
</LinearLayout>
二、kotlin方式
- 代碼
private fun getRoundRectStroke() = GradientDrawable().also {
it.shape = GradientDrawable.RECTANGLE
it.cornerRadius = 10f //圓角度數(shù)
val strokeWidth = 4 // 邊框?qū)挾? val strokeColor = Color.parseColor("#418DF9") //邊框顏色
it.setStroke(strokeWidth, strokeColor)
}
private fun getRoundRect() = GradientDrawable().also {
it.shape = GradientDrawable.RECTANGLE
it.cornerRadius = 10f
it.setColor(Color.parseColor("#418DF9"))
}
- 使用方法
view.background = getRoundRect()
完整源代碼
https://gitee.com/hspbc/shapeDemos.git
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。