android去除ImageButton白色边框

android ImageButton默认在图片周围添加了白色的边框,很不好看,去掉它的方法:

设置如下属性:

android:background="#00ffffff" 
效果前后对比:

android去除ImageButton白色边框_第1张图片  android去除ImageButton白色边框_第2张图片

1 //android:adjustViewBounds="true"
2   
3 //android:padding="0dip

即可

其他:

1 <code>bitmap=((BitmapDrawable)(imgbt.getDrawable())).getBitmap();//得到ImageButton的图片
2  
3  
4 if(bitmap.getPixel((int)(event.getX()),((int)event.getY()))==0){//判断点击处像素的颜色是否为0,0表示没                                                                                                                                     //内容</code>

你可能感兴趣的:(android)