android对按钮的监听(基础)

本文介绍如何在Android应用中实现按钮实时监听,并通过示例代码演示了创建按钮对象、监听器类以及在onCreate函数中添加监听的全过程。通过点击按钮,文本栏上的数字会实时增加1。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


在布局文件中创建一个按钮对象

    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="button"/>


在java文件中创建一个监听类

    class ButtonListener implements OnClickListener{

		@Override
		public void onClick(View v) {
			// TODO Auto-generated method stub
			
			count++;
			textView.setText(count + "");
		}    	
    }

在onCreate函数中添加监听

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        textView = (TextView)findViewById(R.id.textView);
        button = (Button)findViewById(R.id.button);
        
        ButtonListener bl = new ButtonListener();
        button.setOnClickListener(bl);
    }




完整代码如下:

public class MainActivity extends Activity {

	private TextView textView;
	private Button button;
	int count = 0;
	
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        textView = (TextView)findViewById(R.id.textView);
        button = (Button)findViewById(R.id.button);
        
        ButtonListener bl = new ButtonListener();
        button.setOnClickListener(bl);
    }
    
    class ButtonListener implements OnClickListener{

		@Override
		public void onClick(View v) {
			// TODO Auto-generated method stub
			
			count++;
			textView.setText(count + "");
		}    	
    }
}

这样就可以对按钮实时监听,在虚拟机上点击按钮,文本栏上数字就会+1。


这就是最基本的监听代码。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值