gpt4 book ai didi

java - 如何在android studio中添加按钮点击事件

转载 作者:IT老高 更新时间:2023-10-28 20:36:17 28 4
gpt4 key购买 nike

所以我做了一些研究,在通过代码将你的按钮定义为一个对象之后

private Button buttonname;
buttonname = (Button) findViewById(R.id.buttonnameinandroid) ;

这是我的问题

buttonname.setOnClickListener(this); //as I understand it, the "**this**" denotes the current `view(focus)` in the android program

然后你的 OnClick() 事件...

问题:

当我输入“this”时,它会说:

setOnClickListener (Android.View.view.OnClickListener) in View cannot be applied to (com.helloandroidstudio.MainActivity)

我不知道为什么?

这是来自 .java 文件的代码

import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends ActionBarActivity {

private Button btnClick;
private EditText Name, Date;
private TextView msg, NameOut, DateOut;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btnClick = (Button) findViewById(R.id.button) ;
btnClick.setOnClickListener(this);
Name = (EditText) findViewById(R.id.textenter) ;
Date = (EditText) findViewById(R.id.editText) ;
msg = (TextView) findViewById(R.id.txtviewOut) ;
NameOut = (TextView) findViewById(R.id.txtoutName) ;
DateOut = (TextView) findViewById(R.id.txtOutDate) ;
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
}

public void onClick(View v)
{
if (v == btnClick)
{
if (Name.equals("") == false && Date.equals("") == false)
{
NameOut = Name;
DateOut = Date;
msg.setVisibility(View.VISIBLE);
}
else
{
msg.setText("Please complete both fields");
msg.setVisibility(View.VISIBLE);
}
}
return;

}

最佳答案

SetOnClickListener (Android.View.view.OnClickListener) in View cannot be applied to (com.helloandroidstudio.MainActivity)

这意味着(由于您当前的情况)您的 MainActivity 需要实现 OnClickListener:

public class Main extends ActionBarActivity implements View.OnClickListener {
// do your stuff
}

这个:

buttonname.setOnClickListener(this);

表示您要为您的按钮分配监听器“在此实例上” -> 此实例表示 OnClickListener,因此您的类必须实现该接口(interface)。

类似匿名监听类(你也可以使用):

buttonname.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View view) {

}
});

关于java - 如何在android studio中添加按钮点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20156733/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com