android 设置背景为空(透明)

时间:2014-05-20 00:08:42   收藏:0   阅读:615

在给控件设置背景时像ps那样的背景透明

在3.0以下可以使用

imageView.setBackgroundResource(android.R.id.empty);

但是这个方法在3.0以上会出现

ERROR/AndroidRuntime(xxxxx): Caused by: android.content.res.Resources$NotFoundException: File  from drawable resource ID #0x1020004
可以用
imageview.setBackgroundColor(Color.parseColor("#00000000"));

imageview.setBackgroundColor(android.R.color.transparent);

android 设置背景为空(透明),布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!