我是android studio的初学者,我需要将png
图像调整为我在res / drawable中定义为xml文件的形状
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listview_background_shape">
<stroke android:width="2dp" android:color="#ff207d94" />
<padding android:left="2dp"
android:top="2dp"
android:right="2dp"
android:bottom="2dp" />
<corners android:bottomLeftRadius="150dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp"
android:bottomRightRadius="20dp"/>
<solid android:color="#ffffffff" />
</shape>
形状看起来像这样
我需要为它拟合一个矩形图像,但不知道该怎么做。输出应该看起来像这样
相关:Add a background image to shape in XML Android我尝试使用链接中的代码,但没有成功。
编辑:使用ImageView的activity_main.xml
文件是
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="fill_parent"
android:layout_height="300dp"
android:background="@drawable/shape"
android:src="@drawable/test"/>
</LinearLayout>
以上文件的输出为