button 设置圆角
Posted lgz0921
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了button 设置圆角相关的知识,希望对你有一定的参考价值。
直接上代码:
先写一个shape,放到drawable文件件下面
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="22dp"/>
<solid android:color="自己想要的颜色"></solid>
</shape>
然后在button,设置background属性即可
<Button
android:id="@+id/button_button"
android:layout_width="22dp"
android:layout_height="44dp"
android:background="@drawable/上面那个shape的文件名字"
android:text="*****"
android:textColor="@color/white"
android:layout_centerHorizontal="true"/>
以上是关于button 设置圆角的主要内容,如果未能解决你的问题,请参考以下文章
Swift开发教程--设置圆角Button和圆角边框TextView