我一直在尝试关注Youtube上的教程视频。当我尝试在他的视频中看到它在模拟器中时会出现以下错误。
错误:(22,48)错误:';'预期
错误:任务':app:compileDebugJavaWithJavac'执行失败。
编译失败;有关详细信息,请参阅编译器错误输出。
我已经进行了快速网络搜索,人们建议检查JDK文件位置。我做过这个没有帮助的事情。这是我的JDK位置。
C:\Program Files\Java\jdk1.8.0_121
这是我从教程中复制的一小段代码。
package shmaves.myapplication;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.RelativeLayout;
import android.widget.Button;
import android.graphics.Color;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//layout
RelativeLayout shmavesLayout = new RelativeLayout(this);
shmavesLayout.setBackgroundColor(Color.GREEN);
//Button
Button redButton = new Button (this);
redButton.setText ("click me");
redButton.setBackgroundColor(Color.RED)
//Add widget to layout (button is now a child of layout
shmavesLayout.addView(redButton);
//Set this activities content/display to this view
setContentView(shmavesLayout);
}
}
任何人都可以解决问题,或者看看我哪里出错了?我对这一切都是新手,所以请彻底解释。
答案 0 :(得分:1)
第22行错过了&#34 ;;":
redButton.setBackgroundColor(Color.RED)
如果您是Android工作室的新手,您可能无法在IDE中看到行号,则需要更改此配置:
转到文件>设置。在对话框中,选择'编辑器'然后选择 ' General'的子选项,然后是' Appearance'的子选项。 选择'显示行号'如下所示。单击“确定”。
答案 1 :(得分:0)
正如错误消息所示:
错误:(22,48)错误:';'预期
你忘了这个角色&#39 ;;'在redButton.setBackgroundColor(Color.RED)
之后