我是android studio的绝对新手。我试图在工作室中使用“基本布局”创建我的第一个应用程序并面对上述问题。实际问题是右下方没有浮动按钮,中心的文本应该是“Hello World”,但不是显示消息“android ... CoordinatorLayoutStyle
”。 / p>
我确实尝试过我在互联网上找到的所有解决方案,并多次重新安装工作室。什么都不行,我格式化整个电脑并安装新鲜。但没有任何效果。我尝试在其他PC上使用相同的配置安装studio。它运作良好。
我是一个绝对的初学者,所以任何帮助的人都要解释一切
这是我的gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.anish.abc"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation 'com.android.support.constraint:constraint-layout:1.1.1'
implementation 'com.android.support:design:28.0.0-alpha3'
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'
}
答案 0 :(得分:3)
尝试使用SDK 27。
将 compileSdkVersion 和 targetSdkVersion 更改为27,然后将appcompat库版本从28.0.0-alpha3更改为 27.1.1
实施' com.android.support:appcompat-v7:27.1.1'
实施' com.android.support:design:27.1.1'
在SDK Manager中卸载SDK 28,以及SDK Tools选项卡中的版本28构建工具,将阻止Android Studio默认为SDK 28用于新项目。