标签:圆角边框
左上,左下,右上,右下
四个角分别设置弧度即可
drawable/dialog_qrcode_button.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <solid android:color="@color/main_color" /> <corners android:bottomLeftRadius="0dp" android:bottomRightRadius="0dp" android:topLeftRadius="5dp" android:topRightRadius="5dp" /> </shape>
android:background="@drawable/dialog_qrcode_button"
本文出自 “爬过山见过海” 博客,请务必保留此出处http://670176656.blog.51cto.com/4500575/1783532
标签:圆角边框
原文地址:http://670176656.blog.51cto.com/4500575/1783532