【发布时间】:2013-03-31 16:07:42
【问题描述】:
我想创建带有 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>
现在如何给这个按钮添加背景图片?救命!
【问题讨论】:
标签: android image button background rounding