android...CoordinatorLayout 渲染问题
android...CoordinatorLayout Rendering issue
在我将 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'
}
确保您的 build.gradle
实施'com.android.support:appcompat-v7:26.0.1'
如果不需要重启android工作室缓存
在菜单文件>使缓存无效/重新启动
我遇到了类似的问题,通过更改此行解决了
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
至
implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
它帮助我解决了渲染问题
在我将 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'
}
确保您的 build.gradle
实施'com.android.support:appcompat-v7:26.0.1'
如果不需要重启android工作室缓存
在菜单文件>使缓存无效/重新启动
我遇到了类似的问题,通过更改此行解决了
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
至
implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
它帮助我解决了渲染问题