button imageButton 背景透明

引用:http://www.cnblogs.com/userchunqiu/archive/2011/06/10/2077870.html

Button或者ImageButton的背景设为透明或者半透明

  半透明< Button android:background="#e0000000" ... />

  透明< Button android:background="#00000000" ... />

  颜色和不透明度 (alpha) 值以十六进制表示法表示。任何一种颜色的值范围都是 0 到 255(00 到 ff)。对于 alpha,00 表示完全透明,ff 表示完全不透明。表达式顺序是“aabbggrr”,其中“aa=alpha”(00 到 ff);“bb=blue”(00 到 ff);“gg=green”(00 到 ff);“rr=red”(00 到 ff)。例如,如果您希望对某叠加层应用不透明度为 50% 的蓝色,则应指定以下值:7fff0000

  设置背景图片透明度(超简单)

  Java代码

  View v = findViewById(R.id.content);//找到你要设透明背景的layout 的id

  v.getBackground().setAlpha(100);//0~255透明度值

//按下图片

引用:http://yueguc.iteye.com/blog/939686

 

imageButton.setOnTouchListener(new OnTouchListener(){     
                        @Override    
                        public boolean onTouch(View v, MotionEvent event) {     
                                if(event.getAction() == MotionEvent.ACTION_DOWN){     
                                        //更改为按下时的背景图片     
                                        v.setBackgroundResource(R.drawable.pressed);     
                                }else if(event.getAction() == MotionEvent.ACTION_UP){     
                                        //改为抬起时的图片     
                                        v.setBackgroundResource(R.drawable.released);     
                                }     
                                return false;     
                        }     
                });   

原文地址:https://www.cnblogs.com/sode/p/2625867.html