gpt4 book ai didi

java - 找不到 OnClickListener

转载 作者:行者123 更新时间:2023-12-01 09:58:54 24 4
gpt4 key购买 nike

我正在学习 android,目前正在做一个计算器。我已经完成了 xml 部分,我在其中放置了按钮我正在尝试完成 Java 文件,这是使计算器工作的代码

但是在 Java 文件中我遇到了这个错误:错误:(22, 64) 错误:找不到符号类 OnClickListener

我不知道该怎么办:c我还在学习我已经看到我应该放

    public class MainActivity extends ActionBarActivity implements View.OnClickListener {

但我不明白那是什么,也不知道这是否会让计算器出现问题。

这是 Java 文件(MainActivity)

package com.example.glow.pruebas;

import android.content.DialogInterface;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.ActionBarActivity;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.TextView;


public class MainActivity extends ActionBarActivity implements OnClickListener {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Button n0 = (Button) findViewById(R.id.B0);
n0.setOnClickListener(this);
Button n1 = (Button) findViewById(R.id.B1);
n1.setOnClickListener(this);
Button n2 = (Button) findViewById(R.id.B2);
n2.setOnClickListener(this);
Button n3 = (Button) findViewById(R.id.B3);
n3.setOnClickListener(this);
Button n4 = (Button) findViewById(R.id.B4);
n4.setOnClickListener(this);
Button n5 = (Button) findViewById(R.id.B5);
n5.setOnClickListener(this);
Button n6 = (Button) findViewById(R.id.B6);
n6.setOnClickListener(this);
Button n7 = (Button) findViewById(R.id.B7);
n7.setOnClickListener(this);
Button n8 = (Button) findViewById(R.id.B8);
n8.setOnClickListener(this);
Button n9 = (Button) findViewById(R.id.B9);
n9.setOnClickListener(this);

Button coma = (Button) findViewById(R.id.Bcoma);
coma.setOnClickListener(this);
Button igual = (Button) findViewById(R.id.Bigual);
igual.setOnClickListener(this);

Button suma = (Button) findViewById(R.id.B6sumar);
suma.setOnClickListener(this);
Button resta = (Button) findViewById(R.id.B5restar);
resta.setOnClickListener(this);
Button mul = (Button) findViewById(R.id.Bmult);
mul.setOnClickListener(this);
Button division = (Button) findViewById(R.id.Bdividir);
division.setOnClickListener(this);
Button raiz = (Button) findViewById(R.id.raiz);
raiz.setOnClickListener(this);
Button elevado = (Button) findViewById(R.id.BElevado);
elevado.setOnClickListener(this);

Button DEL = (Button) findViewById(R.id.BDEL);
DEL.setOnClickListener(this);
Button AC = (Button) findViewById(R.id.BAC);
AC.setOnClickListener(this);

Button sin = (Button) findViewById(R.id.Bsin);
sin.setOnClickListener(this);
Button cos = (Button) findViewById(R.id.Bcos);
cos.setOnClickListener(this);
Button tan = (Button) findViewById(R.id.Btan);
tan.setOnClickListener(this);

Button secreto = (Button) findViewById(R.id.Bsecreto);
secreto.setOnClickListener(this);

}
@Override
public void onClick(View v) {
TextView pantalla = (TextView) findViewById(R.id.texto);
int seleccion = v.getId();

try {
switch (seleccion) {
case R.id.B0:
pantalla.setText("0");
break;
case R.id.B1:
pantalla.setText("1");
break;
case R.id.B2:
pantalla.setText("2");
break;
case R.id.B3:
pantalla.setText("3");
break;
case R.id.B4:
pantalla.setText("4");
break;
case R.id.B5:
pantalla.setText("5");
break;
case R.id.B6:
pantalla.setText("6");
break;
case R.id.B7:
pantalla.setText("7");
break;
case R.id.B8:
pantalla.setText("8");
break;
case R.id.B9:
pantalla.setText("9");
break;

case R.id.Bcoma:
pantalla.setText(",");
break;

case R.id.Bmult:
break;
case R.id.B5restar:
break;
case R.id.B6sumar:
break;
case R.id.Bdividir:
break;
case R.id.BAC:
break;

case R.id.Bsin:
break;
case R.id.Bcos:
break;
case R.id.Btan:
break;
}

}catch(Exception e){
pantalla.setText("error");
};

}
}

最佳答案

一个愚蠢的错误。

将您的实现从 OnClickListener 更改为 View.OnClickListener

既然你说你不知道它的作用:

http://developer.android.com/reference/android/view/View.OnClickListener.html

您基本上是在尝试实现一个接口(interface),以便您可以访问其传递View的方法onClick(View v) > 在论证中。

关于java - 找不到 OnClickListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36964313/

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