我有一个透明色的png图像,白色的我希望在一个Android应用的ImageView中使用。 You can check that the image has a transparency color
我将图片添加到每个文件夹(drawable-mdpi,drawable-ldpi ..) 并将ImageView与图像相关联。 而不是获得透明色,我得到一个白色,如下所示 The result 蓝屏是具有背景的RelativeLayout。 这是XML代码:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/barre_puissance"
android:layout_toRightOf="@+id/barre_angle"
android:layout_marginLeft="10dp"
android:layout_marginBottom="10dp"
android:background="@drawable/bg_mr">
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_mr_projectile"
android:layout_centerInParent="true"
/>
</RelativeLayout>