我使用带有.png图像资源的Drawable。问题是当拖动图像时,其不透明度会降低。
我希望图像不透明度为100%。
我发现你可以在Drawable上使用getOpacity(),但似乎找不到设置它的方法。
有没有办法设置它?
答案 0 :(得分:1)
你可以简单地使用它。
Drawable rightArrow = getResources().getDrawable(R.drawable.green_arrow_right_small);//Loads an image from resource.
// setting the opacity (alpha)
rightArrow.setAlpha(10);
// setting the images on the ImageViews
rightImage.setImageDrawable(rightArrow);