android圆角矩形有边框无背景色
来源:程序员人生 发布时间:2015-01-23 09:05:23 阅读次数:4237次
我们常常要用到圆角矩形,这也是现在的流行的样式..但是今天在工作中,遇到要写圆角矩形有边框但无背风景的button,本来想让妹子帮忙切图的,但是不想麻烦妹子,自己撑着,说可以做,结果弄了老半天菜弄定的,现在给大家看看,以后避免这麻烦...()
<?xml version="1.0" encoding="utf⑻"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<!-- 绿色边框圆角矩形 -->
<gradient
android:endColor="#ffffff"
android:startColor="#ffffff" />
<solid android:color="#ffffff" />
<stroke
android:width="@dimen/dp2"
android:color="#95d5b2" />
<corners
android:bottomLeftRadius="@dimen/dp15"
android:bottomRightRadius="@dimen/dp15"
android:topLeftRadius="@dimen/dp15"
android:topRightRadius="@dimen/dp15" />
</shape>
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠