android.widget.Button
1.layout的xml中先设置好button的属性,包括id
<Button android:id="@+id/button1" android:text="button_name"
android:layout_height="wrap_content" android:layout_width="fill_parent"></Button>
2.在要用到button的Activity中实例化button对象
Button button1=(Button)findViewById(R.id.button_id);
3.添加监听器
button1.setOnClickListener(new View.OnClickListener(){
@override
public void onClick(View v){}
//自己的代码
});