我正在努力使按钮角成圆形,以及设置背景图像。虽然我能够实现带圆角的按钮,但不能将图像设置为背景。当我尝试android:drawableTop:@drawable/filename
时,按钮再次转换为其默认形状,文本位于图像下方,但我想将图像作为背景,因此如何将这些内容(圆角和背景图像)应用到按钮?
我在drawable中创建了一个名为button_shape
的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"
/>
请帮助我。
答案 0 :(得分:0)
在形状中使用它
solid android:color="@android:color/transparent" />
和imageview应该是
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:scaleType="fitXY" android:background="@drawable/shape"
android:src="@drawable/yourimage" />
答案 1 :(得分:0)
使用这个放在Drowable中的background.xml并设置在按钮android:background =“@ drawable / background”和ovel_shape是drawable中的xml文件,你可以在其中放置圆角的代码
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/rounded_corn"
android:drawable="@drawable/ovel_shape"/>
<item
android:id="@+id/background_img"
android:drawable="@drawable/image"/>
</layer-list>