在Android设备上使用png图像格式

时间:2014-07-04 19:30:07

标签: android air png nexus-7

每当我使用透明PNG图像时,在我的Android设备(nexus)上,我在透明部分的一侧获得边框。解决这个问题的方法是什么?

1 个答案:

答案 0 :(得分:0)

您尝试添加的图片可能不透明。请检查...

在xml文件中,使用此代码添加ImageView并为其设置资源:

<ImageView
 android:id="@+id/image"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:src="@drawable/sample" />

要从java代码访问ImageView,请使用以下代码。

 ImageView imgView = (ImageView) findViewById(R.id.image);

您还可以以编程方式设置资源:

 imgView.setImageResource(R.drawable.sample);