我想創建帶有background.png和圓角的按鈕。這個怎麼做?按鈕角落圓角背景圖片
我寫了一篇關於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>
現在怎麼背景圖片添加到這個按鈕?幫幫我!
代碼犯規說..where添加背景圖片...請甚至包括圖像。 。如果可能的話 – bvsss