添加的onclick监听器pdefined

添加的onclick监听器pdefined

本文介绍了添加的onclick监听器pdefined $ P $按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下按钮,在我的XML布局文件...

I've got the following button in my xml layout file...

<Button
    android:layout_width="150dip"
    android:id="@+id/button1"
    android:layout_height="50dip"
    android:text="@string/login"
    android:layout_marginRight="10dip">
</Button>

我想以编程方式添加一个的onclick()监听器,在它的Java文件中。我将如何做到这一点?

I'd like to programmatically add an onclick() listener in it's Java file. How would I do this?

推荐答案

您只需要像这样:

Button buttonOne = (Button) findViewById(R.id.button1);
buttonOne.setOnClickListener(new Button.OnClickListener() {
    public void onClick(View v) {
            //Do stuff here
    }
});

这篇关于添加的onclick监听器pdefined $ P $按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 06:51