您的位置:首页 > 其它

设置图片透明度alpha注意

2012-04-21 02:38 218 查看
imgTextGray = new ImageView(this);

imgTextGray.setBackgroundResource(R.drawable.slidetext_gray);

private void alphaSlideText(int alphaValue){

if(imgTextGray != null){

Log.e(TAG, "alphaSlideText = "+alphaValue);

imgTextGray.getBackground().setAlpha(alphaValue);//注意不能写成imgTextGray.setAlpha(alphaValue);否则ALPHA会不起作用.

imgTextGray.invalidate();

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: