请问各位那个已签到的按钮是怎么做出来的(背景透明但是外围有一圈不透明的环绕线)。
已经解决了可以通过设置背景shape图片来解决 shape代码如下<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"><corners
android:topLeftRadius="100dp" android:topRightRadius="100dp" android:bottomRightRadius="100dp" android:bottomLeftRadius="100dp">
</corners><stroke
android:width="3dp" android:color="#bebebe">
</stroke></shape>
用 shape 画
<?xml version="1.0" encoding="utf-8"?> <shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="@android:color/transparent"/> <stroke android:color="@android:color/darker_gray" android:width="1dp"/> <corners android:radius="20dp"/> </shape>
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
已经解决了可以通过设置背景shape图片来解决 shape代码如下
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
</corners>
<stroke
</stroke>
</shape>
用 shape 画