我使用了Android Studio的lates版本。它说我的应用程序中有一个错误(渲染问题)。我试图把
<style name="AppTheme.NoActionBar">
<item name="coordinatorLayoutStyle">@style/Widget.Design.CoordinatorLayout</item>
</style>
在styles.xml中,但仍然无法工作。有人可以给我一个解决方案吗?我昨天刚下载并开始学习Android Studio,所以我还是什么都不知道。请帮帮我......
答案 0 :(得分:1)
我遇到了同样的问题,并且我通过以下方式解决了
转到: build.grandle (模块:应用)
并使用以下代码更改代码:
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.yourname.yourappname"
minSdkVersion 21
targetSdkVersion 26
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:26.1.0'
// implementation 'com.android.support:support-v4:28.0.0-alpha3'
implementation 'com.android.support:design:26.1.0'
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'
}
对不起,我的英语水平