java – 找不到符号类onClickListener

前端之家收集整理的这篇文章主要介绍了java – 找不到符号类onClickListener前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 android开发的新手.这是我遇到的问题.
我正在使用 Android Studio.
我查了很多网站,他们说要导入相关的课程.做完了
那个问题依然存在.
任何帮助表示赞赏.

任何人都可以帮我这个,我一直在寻找解决方案.

这是代码

package com.example.veeresh.myapplication;
//import statements
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.view.View;
import android.widget.TextView;

public class MainActivity extends ActionBarActivity {

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

        Button button1 = (Button)findViewById(R.id.button1);

        button1.setOnClickListener(
                //error: cannot find symbol class onClickListener
                new Button.onClickListener()
                {
                    public void onClick(View v)
                    {
                        TextView text1 = (TextView)findViewById(R.id.text1);
                        text1.setText("Veeresh Here");
                    }
                }
                );
    }
}

错误

Error:(24,27) error: cannot find symbol class onClickListener
Error:Execution Failed for task ‘:app:compileDebugJava’.
Compilation Failed; see the compiler error output for details.

解决方法

它应该是新的View.OnClickListener()而不是新的Button.onClickListener()

带有大写字母O的OnClickListener.

原文链接:https://www.f2er.com/java/239783.html

猜你在找的Java相关文章