效果图:
代码实现:
xml布局文件:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | <? 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:orientation = "vertical" > <!-- 显示一条虚线 开始 --> < TextView android:layout_width = "match_parent" android:layout_height = "30dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:layout_marginTop = "40dp" android:gravity = "center" android:text = "一条虚线" /> < View android:layout_width = "match_parent" android:layout_height = "2dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:background = "@drawable/style1" /> <!-- 显示边框虚线 开始 --> < TextView android:layout_width = "match_parent" android:layout_height = "30dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:layout_marginTop = "40dp" android:background = "@drawable/style2" android:gravity = "center" android:text = "边框虚线" /> <!-- 显示边框实线 开始 --> < TextView android:layout_width = "match_parent" android:layout_height = "30dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:layout_marginTop = "5dp" android:background = "@drawable/style3" android:gravity = "center" android:text = "边框实线" /> <!-- 显示边框圆角虚线 开始 --> < TextView android:layout_width = "match_parent" android:layout_height = "30dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:layout_marginTop = "40dp" android:background = "@drawable/style4" android:gravity = "center" android:text = "圆角虚线" /> <!-- 显示边框圆角实线 开始 --> < TextView android:layout_width = "match_parent" android:layout_height = "30dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:layout_marginTop = "5dp" android:background = "@drawable/style5" android:gravity = "center" android:text = "圆角实线" /> <!-- 显示边框部分圆角1 开始 --> < TextView android:layout_width = "match_parent" android:layout_height = "30dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:layout_marginTop = "40dp" android:background = "@drawable/style6" android:gravity = "center" android:text = "部分圆角1" /> <!-- 显示边框部分圆角2 开始 --> < TextView android:layout_width = "match_parent" android:layout_height = "30dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:layout_marginTop = "5dp" android:background = "@drawable/style7" android:gravity = "center" android:text = "部分圆角2" /> <!-- 显示渐变色 开始 --> < TextView android:layout_width = "match_parent" android:layout_height = "30dp" android:layout_marginLeft = "50dp" android:layout_marginRight = "50dp" android:layout_marginTop = "40dp" android:background = "@drawable/style8" android:gravity = "center" android:text = "渐变色" /> </ LinearLayout > |
1、一条虚线,设置文件(drawable/style1.xml文件)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <? xml version = "1.0" encoding = "utf-8" ?> < shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "line" > <!-- 显示一条虚线, 破折线的宽度为dashWith, 破折线之间的空隙的宽度为dashGap, 如果dashGap=0dp显示的就是一条实线 --> < stroke android:dashGap = "3dp" android:dashWidth = "6dp" android:width = "1dp" android:color = "#ec5959" /> <!-- 虚线的高度 --> < size android:height = "1dp" /> </ shape > |
2、边框虚线,设置文件(drawable/style2.xml文件)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <? xml version = "1.0" encoding = "utf-8" ?> < shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "rectangle" > <!-- 显示一条虚线, 破折线的宽度为dashWith, 破折线之间的空隙的宽度为dashGap, --> < stroke android:dashGap = "3dp" android:dashWidth = "6dp" android:width = "1dp" android:color = "#ec5959" /> <!-- 虚线的高度 --> < size android:height = "1dp" /> </ shape > |
3、边框实线,设置文件(drawable/style3.xml文件)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <? xml version = "1.0" encoding = "utf-8" ?> < shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "rectangle" > <!-- 显示一条虚线, 破折线的宽度为dashWith, 破折线之间的空隙的宽度为dashGap, --> < stroke android:dashGap = "0dp" android:dashWidth = "6dp" android:width = "1dp" android:color = "#ec5959" /> <!-- 虚线的高度 --> < size android:height = "1dp" /> </ shape > |
4、圆角虚线,设置文件(drawable/style4.xml文件)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <? xml version = "1.0" encoding = "utf-8" ?> < shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "rectangle" > <!-- 填充颜色 --> < solid android:color = "#FFFFFF" ></ solid > <!-- 线的宽度,颜色灰色 --> < stroke android:dashGap = "3dp" android:dashWidth = "6dp" android:width = "1dp" android:color = "#ec5959" > </ stroke > <!-- 矩形的圆角半径 --> < corners android:radius = "10dp" /> </ shape > |
5、圆角实线,设置文件(drawable/style5.xml文件)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <? xml version = "1.0" encoding = "utf-8" ?> < shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "rectangle" > <!-- 填充颜色 --> < solid android:color = "#FFFFFF" ></ solid > <!-- 线的宽度,颜色灰色 --> < stroke android:dashGap = "0dp" android:dashWidth = "6dp" android:width = "1dp" android:color = "#ec5959" > </ stroke > <!-- 矩形的圆角半径 --> < corners android:radius = "10dp" /> </ shape > |
6、部分圆角1,设置文件(drawable/style6.xml文件)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <? xml version = "1.0" encoding = "utf-8" ?> < shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "rectangle" > <!-- 填充颜色 --> < solid android:color = "#FFFFFF" ></ solid > <!-- 线的宽度,颜色灰色 --> < stroke android:dashGap = "0dp" android:dashWidth = "6dp" android:width = "1dp" android:color = "#ec5959" > </ stroke > <!-- 矩形的圆角半径 android:bottomLeftRadius="10dp" android:bottomRightRadius="10dp" --> < corners android:topLeftRadius = "10dp" android:topRightRadius = "10dp" /> </ shape > |
7、部分圆角2,设置文件(drawable/style7.xml文件)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <? xml version = "1.0" encoding = "utf-8" ?> < shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "rectangle" > <!-- 填充颜色 --> < solid android:color = "#FFFFFF" ></ solid > <!-- 线的宽度,颜色灰色 --> < stroke android:dashGap = "3dp" android:dashWidth = "6dp" android:width = "1dp" android:color = "#ec5959" > </ stroke > <!-- 矩形的圆角半径 android:bottomLeftRadius="10dp" android:bottomRightRadius="10dp" android:topLeftRadius="10dp" android:topRightRadius="10dp" --> < corners android:bottomLeftRadius = "10dp" android:bottomRightRadius = "10dp" /> </ shape > |
8、渐变色,设置文件(drawable/style8.xml文件)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <? xml version = "1.0" encoding = "utf-8" ?> < shape xmlns:android = "http://schemas.android.com/apk/res/android" android:shape = "rectangle" > <!-- shape是用来定义形状的, gradient定义该形状里面为渐变色填充, startColor起始颜色, endColor结束颜色, angle表示方向角度。 当angle=0时,渐变色是从左向右。 然后逆时针方向转, 当angle=90时为从下往上。 --> < gradient android:startColor = "#ec5959" android:endColor = "#FFFFFF" android:angle = "0" /> <!-- 90阴影冲上,-90,阴影冲下--> < padding android:left = "0dp" android:top = "0dp" android:right = "0dp" android:bottom = "0dp" /> </ shape > |
转载请注明来源地址:小川编程 » https://www.youhutong.com/index.php/article/index/180.html
1、本站发布的内容仅限用于学习和研究目的.请勿用于商业或非法用途,下载后请24小时内删除。
2、本站所有内容均不能保证其完整性,不能接受请勿购买或下载,如需完整程序,请去其官方购买正版使用
3、本站联系方式Email:admin@youhutong.com ,收到邮件会第一时间处理。
4、如侵犯到任何版权问题,请立即告知本站(立即在线告知),本站将及时删除并致以最深的歉意