Skip to content

1.0.5

Compare
Choose a tag to compare
@cgspine cgspine released this 15 Dec 16:57
· 912 commits to master since this release

【更新】QMUIAlpha系列组件的父类修改为AppCompat系列
【更新】在 theme 中添加 dialog 的 backgroundDimAmount 属性
【更新】support 依赖包升级到 27.0.1
【更新】更改 QMUICommonListItemView.setDetailText 的参数类型为 CharSequence #83
【修复】QMUIFloatLayout 居左布局时换行时的Y轴偏移值计算错误 #61
【修复】QMUITopBar 内部间距计算存在的问题
【修复】MenuBaseDialogBuilder 的子类构建的 dialog 在内容列表过长时被截断的问题 #54 #67 #105
【修复】QMUITabSegment在滚动模式下 scrollOffset 在 selectIndex > 0 时错误 #71
【修复】QMUIQQFaceView 内容过多时存在的性能问题
【修复】删除 AndroidManifest 中无用的代码 #110
【修复】修复 QMUIBasePopup 中测量可能不准确的问题

【特别说明】
support 依赖包升级到 27.0.1,如果您的项目的 compileSdkVersion 未升级到 26 及以上,并且由于某些原因暂时不能升级到 26 及以上,那么您需要在您的项目中覆盖 qmui 的 support 依赖版本

configurations.all {
    resolutionStrategy {
        force "com.android.support:recyclerview-v7:$supportVersion"
        force "com.android.support:appcompat-v7:$supportVersion"
        force "com.android.support:design:$supportVersion"
        force "com.android.support:support-vector-drawable:$supportVersion"
    }
}