我是Android应用开发的新手。我想绘制一个矩形并将其设置为ImageView和按钮的背景。我已经在drawable文件夹中创建了一个XML文件来创建矩形,但是如何将它用作ImageView和按钮的背景? 提前谢谢!
答案 0 :(得分:1)
只需使用
android:background="@drawable/your_rectangle_xml_file"
答案 1 :(得分:1)
在drawable文件夹中创建一个rectangle.xml并粘贴代码
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingLeft="20dp"
android:shape="rectangle">
<solid android:color="#000000"></solid>
<corners
android:bottomLeftRadius="@dimen/_5dp"
android:bottomRightRadius="@dimen/_5dp"
android:topLeftRadius="@dimen/_5dp"
android:topRightRadius="@dimen/_5dp"
></corners>
</shape>
之后在你的活动中使用它就像
一样<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Your text"
android:textColor="#ffffff"
android:textAllCaps="false"
android:background="@drawable/rectangle"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="your image "
android:background="@drawable/rectangle"/>