将Android Studio更新到v3.1.3之后,我遇到了渲染问题!
build.grandle(应用程序)
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.2'
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 :(得分:1)
我有一个类似的问题,通过更改此行已解决
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
到
implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
它帮助我解决了渲染问题
答案 1 :(得分:0)
确保您已经在build.gradle中
实现'com.android.support:appcompat-v7:26.0.1'
如果您不需要重新启动android studio缓存
在菜单文件中>使高速缓存无效/重新启动