我正在使用一个web视图,其中我正在添加一个图像视图。如何将此图像视图的背景设置为透明?

我试过了:

mImageview.setBackgroundResource(R.color.trans);

其中trans→<color name="trans">#00000000 </color>。


当前回答

或者,作为替代,用下面的代码解析资源ID:

  mComponentName.setBackgroundColor(getResources().getColor(android.R.color.transparent));

其他回答

对于那些仍然面临这个问题的人,你可以试试这个 element.getBackground () .setAlpha (0);

如果你想在代码中使用它,只需:

mComponentName.setBackgroundColor(Color.parseColor("#80000000"));

你也可以使用View.setAlpha(float)来精确地改变可见性。

0是透明的,1完全可见。;)

ImageView.setBackground(R.drawable.my_background);

ImageView.setBackgroundResource(R.color.colorPrimary);

ImageView.getImageAlpha();

ImageView.setAlpha(125); // transparency

已经有一个预定义的常量。使用Color.TRANSPARENT。