android 圆角背景

【android 圆角背景】今日长缨在手,何时缚住苍龙。这篇文章主要讲述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(环形)

 


    推荐阅读