在Android中,最好是用XML来覆盖另一个图像周围的图像吗?
我有一个蓝色圆圈的图像,我的应用程序从API检索图标。检索图标后,它将通过ImageView显示。
ImageView的XML是:
<ImageView
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="100dp"
android:id="@+id/weather_icon"
android:scaleType="fitCenter"/>
现在我想&#34;包装&#34;此图像周围的图像。我想要在检索到的图像周围的图像的XML是:
<ImageView
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_height="100dp"
android:scaleType="fitCenter"
android:src="@drawable/image_wrap"/>