Android之ImageButton控件基础操作
控件绑定(前台对应控件的id属性要设置为imageButton_light)
private ImageButton imageButton_light;//定义一个ImageButton控件对象,名为imageButton_light imageButton_light = (ImageButton) this.findViewById(R.id.imageButton_light);//与前台名为imageButton的控件进行控件绑定
设置点击监听器(前台对应控件的onClick属性要设置为onClick)
imageButton_light.setOnClickListener(this);
控件点击操作(前台对应控件的onClick属性要设置为onClick)
@Override public void onClick(View v) { switch (v.getId()) { case R.id.imageButton_light:{ //do sth break; } } }
更改控件背景图片
imageButton_sos.setBackgroundResource(R.drawable.pic2);//假设默认图片为pic,在此更改为pic2
设置控件Alpha值
imageButton_light.getBackground().setAlpha(50);
设置控件可用性
imageButton_light.setEnabled(false);
** Then I looked up at the sky and saw the sun **
posted on 2015-05-20 21:00 chenyangsocool 阅读(594) 评论(0) 编辑 收藏 举报