有时候我们会需要圆角的按钮或者有圆角边框的edittext
那我们该怎么做呢?一般是建个xml:
这个shape.xml 代码来自网上,供大家参考
- xml version="1.0" encoding="UTF-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle" >
- <solid android:color="#02B4FE" />
- <corners android:Radius="5dp" />
- shape>
OK了,但是,我需要一个只有右边上下两个角是圆角的按钮该怎么说?
其实这样改改就行了
- xml version="1.0" encoding="UTF-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle" >
- <solid android:color="#02B4FE" />
- <corners
- android:topRightRadius="5dp"
- android:bottomRightRadius="5dp"
- android:topLeftRadius="5dp"
- android:bottomLeftRadius="5dp"
- />
- shape>
速记
android:topRightRadius 右上角
android:bottomRightRadius 右下角
android:topLeftRadius 左上角
android:bottomLeftRadius 左下角
上一篇 Brackets插件集合