需要在下图文件中创建名为btn_shape的DrawableResource文件
btn_shape.xml的代码:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!--圆角的弧度-->
<corners android:radius="10dp"/>
<!--按钮的颜色-->
<solid android:color="@color/colorPrimary"/>
贴下layout的代码,只是声明了一个Button而已。
<Button
android:id="@+id/actionbutton"
android:text="启动"
android:background="@drawable/btn_shape"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
主要属性就是在background属性中设置一个@drawable/btn_shape
这个属性就是将这个button的样式设置为btn_shape中的样式。