您的位置:首页 > 编程语言

通过代码实现button的点击效果

2011-12-12 16:02 357 查看
1. 自定义状态效果可以通过代码实现,也可以通过xml定义style实现。

2. 下面先介绍代码实现,通过StateListDrawable定义Button背景。

3. 由于View类中PRESSED_ENABLED_STATE_SET值不是公共常量,所以通过继承来访问了。

特注:其他控件的效果,比如ImageView,也可以通过这种方法实现,但是由于ImageView默认是没焦点,不可点击的,需要自己更改(需要点击就设置android:clickable="true" , 需要能够选中就设置android:focusable="true" )。

java 代码:

01	package com.test.TestButton;
02	 
03	import android.app.Activity;
04	import android.content.Context;
05	import android.graphics.drawable.Drawable;
06	import android.graphics.drawable.StateListDrawable;
07	import android.os.Bundle;
08	import android.view.View;
09	import android.widget.Button;
10	 
11	public class TestButton extends Activity {
12	    @Override
13	    public void onCreate(Bundle savedInstanceState) {
14	        super.onCreate(savedInstanceState);
15	        setContentView(R.layout.main);
16	        Integer[] mButtonState = { R.drawable.defaultbutton,
17	                R.drawable.focusedpressed, R.drawable.pressed };
18	        Button mButton = (Button) findViewById(R.id.button);
19	        MyButton myButton = new MyButton(this);
20	        mButton.setBackgroundDrawable(myButton.setbg(mButtonState));
21	    }
22	 
23	    class MyButton extends View {
24	 
25	        public MyButton(Context context) {
26	            super(context);
27	        }
28	 
29	        // 以下这个方法也可以把你的图片数组传过来,以StateListDrawable来设置图片状态,来表现button的各中状态。未选
30	        // 中,按下,选中效果。
31	        public StateListDrawable setbg(Integer[] mImageIds) {
32	            StateListDrawable bg = new StateListDrawable();
33	            Drawable normal = this.getResources().getDrawable(mImageIds[0]);
34	            Drawable selected = this.getResources().getDrawable(mImageIds[1]);
35	            Drawable pressed = this.getResources().getDrawable(mImageIds[2]);
36	            bg.addState(View.PRESSED_ENABLED_STATE_SET, pressed);
37	            bg.addState(View.ENABLED_FOCUSED_STATE_SET, selected);
38	            bg.addState(View.ENABLED_STATE_SET, normal);
39	            bg.addState(View.FOCUSED_STATE_SET, selected);
40	            bg.addState(View.EMPTY_STATE_SET, normal);
41	            return bg;
42	        }
43	    }
44	}


main.xml

01	<?xml version=”1.0″ encoding=”utf-8″?>
02	<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
03	        android:orientation=”vertical”
04	        android:layout_width=”fill_parent”
05	        android:layout_height=”fill_parent”
06	        >
07	    <Button android:id=”@+id/btn”
08	            android:layout_width=”wrap_content”
09	            android:layout_height=”wrap_content”
10	            android:text=”@string/mybtn”
11	            android:background=”@drawable/mybutton_background” />
12	</LinearLayout>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐