这条线上的多个标记对我有帮助

时间:2015-08-14 03:33:53

标签: java mysql eclipse

我在这一行收到了多条标记:

- Syntax error, insert ")" to complete 
 Expression
- Syntax error, insert ";" to complete 
 Statement
- Syntax error, insert "}" to complete 
 ClassBody

这是代码:

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //Menemukan lokasi tombol di activity_main.xml
        Button tombol = (Button) findViewById(R.id.button1);

        //Menangkap Klik pada Tombol
        tombol.setOnClickListener(new OnClickListener() {

     @Override
     public void onClick(View arg0) {
         //TODO Auto-generated method stub
     Intent Intentku = new Intent(MainActivity.this,AktivitasBaru.class);
     startActivity(Intentku);

     } <<<<<<<<<< eror    

        }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

1 个答案:

答案 0 :(得分:0)

您尚未正确关闭点击侦听器匿名类,您应该:

tombol.setOnClickListener(new OnClickListener() {
   @Override
   public void onClick(View arg0) {
     Intent Intentku = new Intent(MainActivity.this,AktivitasBaru.class);
     startActivity(Intentku);
   }
});

你错过了最后一行。