我想用 background.png 和圆角创建 Button。这个怎么做?
我在 MainActivity 上写了这段代码:
<Button
android:layout_width="match_parent"
android:layout_height="40dip"
android:text="LOGIN TO THE GAME"
android:textColor="#ffffff"
android:background="@drawable/button_corners" />
我创建了文件'button_corners.xml',其中包含:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:radius="10dip" />
<stroke
android:width="0.5dp"
android:color="#000000" />
</shape>
现在如何将背景图像添加到此按钮?帮助!