adding an adapter helper interface
This commit is contained in:
parent
474cc9cdf4
commit
38cf6398a7
2 changed files with 10 additions and 1 deletions
|
@ -32,7 +32,7 @@ ext {
|
|||
propMinSdkVersion = 16
|
||||
propTargetSdkVersion = propCompileSdkVersion
|
||||
propVersionCode = 1
|
||||
propVersionName = '2.38.6'
|
||||
propVersionName = '2.38.7'
|
||||
kotlin_version = '1.1.51'
|
||||
support_libs = '27.0.0'
|
||||
}
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
package com.simplemobiletools.commons.interfaces
|
||||
|
||||
import java.util.*
|
||||
|
||||
interface MyAdapterListener {
|
||||
fun toggleItemSelectionAdapter(select: Boolean, position: Int)
|
||||
|
||||
fun getSelectedPositions(): HashSet<Int>
|
||||
}
|
Loading…
Reference in a new issue