课程
/移动开发
/Android
/Android攻城狮的第一门课(入门篇)
怎么给button设置边框颜色?设置圆角
2015-06-16
源自:Android攻城狮的第一门课(入门篇) 5-3
正在回答
定义一个xml文件,类型为 shape,然后在里面写圆角等参数,再将这个xml文件设置为button的背景图片就行
下面是一种圆角xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"> <corners android:radius="5dp"/> <stroke android:color="@color/white" android:width="2dp"/> </shape>
<corners>就是设置圆角,<stroke>就是设置边框
更详细的建议可以google下
举报
想快速掌握Android应用开发基础,选择学习这门课程就对了。