当我创建一个新项目时,activity_main.xml文件没有显示默认的“ Hello World!”。 TextView。我找到了一个视频,该视频通过更改build.gradle(Module:app)文件中的“ implementation”行来纠正此问题。他将第二个实施行的结尾从beta01更改为alpha1。
`dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-beta01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}`
我怀疑某些设置已关闭,无论是我配置要构建的新项目的方式,还是我完全不知道的其他可能性。有没有办法在新项目构建的依赖项下更改默认值?我不确定这是问题的原因还是较大的症状。在出现看似简单的错误之前,我似乎无法遵循最简单的教程三个步骤,但是我似乎无法解决。
我是Android的新手,有一定的编码经验。但是,我很迷茫,因为我似乎无法跟随简单的教程。任何帮助都会很棒。
我正在使用Android Studio 3.1.4
我引用的视频(在45s到1m英寸附近):https://www.youtube.com/watch?v=dpGqlBDqz_M&t=80s
我也没有使用Gradle文档:https://docs.gradle.org/current/userguide/declaring_dependencies.html