Skip to content

Commit

Permalink
update version = 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shaoshuai904 committed Nov 20, 2020
1 parent 1060cba commit bd200cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies {
// for Support
implementation 'com.github.shaoshuai904:XStyleDialog:1.5.1'
// for androidx
implementation 'com.github.shaoshuai904:XStyleDialog:2.0.1'
implementation 'com.github.shaoshuai904:XStyleDialog:2.0.2'
}
```

Expand Down Expand Up @@ -113,7 +113,7 @@ dependencies {


----------
## v2.0.1 ##
## v2.0.2 ##
- 更新minSdkVersion = 19
- 提供`setScaleWidth``setScaleHeight`方法设置Dialog的屏幕百分比宽度和高度
- 提供Dialog的getRootView及各个子View方法,以支持深度自定义。
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ android.enableJetifier=true
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
VERSION_CODE=41
VERSION_NAME=2.0.1
VERSION_CODE=42
VERSION_NAME=2.0.2
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ActionSheetRecyclerMultipleSelectedDialog(
}
}

// 添加动作页签集合
// 添加数据集合
fun addSheetItems(items: List<SheetItem>): ActionSheetRecyclerMultipleSelectedDialog {
getDataView().adapter = adapter
adapter.refreshData(items)
Expand Down Expand Up @@ -98,7 +98,7 @@ class ActionSheetRecyclerMultipleSelectedDialog(
adapter.isSelectAll(cbSelectAll.isChecked)
}
tvConfirm.setOnClickListener {
val currentSelectList = adapter.getCurrentSelectedItemList()
val currentSelectList = getCurrentSelectedItemList()
onSheetItemSelectConfirmListener?.onSelectConfirm(currentSelectList)
dismiss()
}
Expand Down

0 comments on commit bd200cb

Please sign in to comment.