Android programming, a little issue.

前端 未结 3 1761
眼角桃花
眼角桃花 2021-01-26 06:58

I\'m getting the red squiggle under a parenthesis this time, telling me \"insert \"EnumBody\" to complete EnumDeclaration\"

It is happening on the last line of this cod

3条回答
  •  时光说笑
    2021-01-26 07:20

    Is this the actual code? Could it be the additional "@" character at the end of class handleButton4?

    class handleButton4 implements OnClickListener {
        public void onClick(View v) {
            Intent intent = new Intent(Main.this, Settings.class);
            startActivity(intent);  } }@ // <------- this
    

提交回复
热议问题