我正在尝试使按钮的角变圆,并设置背景图像。虽然我能够实现圆角按钮,但不能将图像设置为背景。当我尝试android:drawableTop:@drawable/filename
时,按钮再次转换为其默认形状,文本位于图像下方,但我希望图像作为背景,那么如何将东西(圆角和背景图像)应用于按钮?
我创建了一个名为button_shape
drawable 的 xml 文件;它的代码是:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<solid android:color="#ffffff"
/>
<corners
android:bottomLeftRadius="20dp"
android:bottomRightRadius="20dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp" />
<stroke android:width="3dp" android:color="#000000" />
</shape>
我放置按钮的主要xml文件代码是:
<Button
android:id="@+id/button1"
android:layout_width="150dp"
android:layout_height="40dp"
android:layout_marginTop="179dp"
android:background="@drawable/button_shape"
android:text="Button"
android:textColor="#000000"
/>
请帮我解决一下这个。