我遇到了这个问题,我不知道它什么时候开始。我之前没有遇到这个问题。
由于此错误,Checkbox
中的实际框不会显示在Android 5/6
中,但会显示在Android 4
中。我是说这个
我在不同设备上测试了应用
我尝试直接使用AppCompatCheckBox
代替Checkbox
,但错误和问题仍然存在。
摇篮
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.aaa.bbb"
minSdkVersion 15
targetSdkVersion 23
versionCode 15
versionName "0.1"
renderscriptTargetApi 23
renderscriptSupportModeEnabled true
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
我错过了什么?我做了什么?
答案 0 :(得分:0)
这是与Carbon库版本0.12.0相关的样式问题。降级到0.11.0会修复它。