1.在Drawable下创建shape,在布局页面直接使用
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:dashWidth="0.5dp"
android:width="0.1dp"
android:color="#999999" >
>
</stroke>
</shape>
2.在代码中使用
VIP.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
GradientDrawable drawable = new GradientDrawable();
drawable.setStroke(1, Color.RED); // 边框粗细及颜色
drawable.setCornerRadius(10);//设置圆角的边距
VIP.setBackground(drawable);
}
});