标签: java android button android-activity
在Android Studio中我想要一个按钮来启动一个新的Activity。我得到一个表达式预期错误。我哪里出错?
{{1}}
答案 0 :(得分:1)
您必须删除此行Button advanceToQuestionTwo = {Button};或完成该行。您需要放置(Button)而不是{Button}。然后,您应该致电findViewById( id of that button in the xml file)。
Button advanceToQuestionTwo = {Button};
(Button)
{Button}
findViewById( id of that button in the xml file)