我收到此错误消息:令牌上的语法错误
这是我的代码:
package com.BartH.klok;
import android.app.Activity;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.widget.Button;
import android.view.View;
import android.view.View.OnClickListener;
import android.content.Intent;
import android.os.Bundle;
import android.widget.Button;
public class help extends Activity {
Button button;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.help);
addListenerOnButton();
}
public void addListenerOnButton() {
button = (Button) findViewById(R.id.buttonback);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent intent5 = new Intent(this, Fullscreen.class);
startActivity(intent5);
}
});
}
}
基本上我只是想在按下'buttonback'之后再回到'全屏'活动。但按钮是我的新手,所以我不知道如何做到这一点。 这是我得到的唯一错误。
感谢您寻找
答案 0 :(得分:2)
this
引用当前对象,在本例中为OnClickListener,而不是您的Activity。使用:
Intent intent5 = new Intent(help.this, Fullscreen.class);
另请阅读Java naming conventions,其中指出类应以大写字母(CamelCase)开头。因此,您的活动应命名为Help
。
答案 1 :(得分:1)
应该是:
Intent intent5 = new Intent(help.this, Fullscreen.class);