imageButton被边框包围的原因、解决办法
imageButton中默认会以image的宽高设置一个背景框。
怎么去掉?
1、添加 android:background="#00000000";//设置背景透明
2、把android:src="@drawable/xx"改为android:background="@/drawable/xx"
3、在代码中添加如下:
View v= findViewById(R.id.xx);
v.getBackground().setAlpha(100);//0~255透明度值