android 圆角背景
Posted zty_Love
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 圆角背景相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!-- 设置按钮的左上角和右下角为弧形 --> <stroke android:color="@color/colorNewRed" android:width="1dp" /> <solid android:color="@color/colorNewRed" /> <corners android:topLeftRadius="15dip" android:bottomRightRadius="15dip" /> </shape>
相关属性:
corners:圆角弧度
solid:里面背景
stroke:外框背景
padding:文字与边框的距离
shape:背景整体类型,取值有 rectangle(矩形) oval(椭圆形) line(线性) ring(环形)
以上是关于android 圆角背景的主要内容,如果未能解决你的问题,请参考以下文章