android去除ImageButton白色邊框
android ImageButton默認在圖片周圍添加了白色的邊框,很不好看,去掉它的方法:
本文引用地址:http://butianyuan.cn/article/201610/305512.htm設置如下屬性:
android:background=#00ffffff
效果前后對比:
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> |
評論