android shape画边框,安卓用shape画圆角矩形边框
效果圖:
代碼:
一、xml方式
代碼: shape_rec_blue.xml
圓角矩形邊框
android:shape="rectangle">
android:width="1dp"
android:color="#418DF9" />
圓角矩形背景
android:shape="rectangle">
使用
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F3F3F3"
android:orientation="vertical">
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">
android:layout_height="wrap_content"
android:textSize="30dp"
android:text=" 測試測試測試測試 "/>
二、kotlin方式
代碼
圓角矩形邊框
private fun getRoundRectStroke() = GradientDrawable().also {
it.shape = GradientDrawable.RECTANGLE
it.cornerRadius = 10f //圓角度數
val strokeWidth = 4 // 邊框寬度
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()
附錄:
總結
以上是生活随笔為你收集整理的android shape画边框,安卓用shape画圆角矩形边框的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java如何编写年月_如何从Java中的
- 下一篇: 今天在cnblog开博啦