我一直在努力让这些小代码工作我更远了因为我跳过它但需要回到它我的buttonPlay没有被识别,我的书告诉我我需要导入一个指令。我该怎么做
//这是我们游戏的切入点
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Here we set our UI layout as the view
setContentView(R.layout.activity_main);
// Get a reference to the button in our layout
final Button buttonPlay = (Button) findViewById(R.id.buttonPlay);
buttonPlay.setOnClickListener(this);
答案 0 :(得分:0)
我认为你在谈论这一行:
final Button buttonPlay = (Button) findViewById(R.id.buttonPlay);
编译器抱怨这部分:R.id.buttonPlay
。它说 使用buttonPlay
是一个未定义的符号。
R
类实际上是从包含应用程序UI设计的XML文件自动生成的。它包括各种元素的名称。编译错误的最可能的解释是,“buttonPlay”尚未在XML中定义,或者您删除了它,或者您没有在两个地方拼写相同的名称(包括大小写)。