adding an adapter helper interface

This commit is contained in:
tibbi 2017-11-12 12:08:04 +01:00
parent 474cc9cdf4
commit 38cf6398a7
2 changed files with 10 additions and 1 deletions

View file

@ -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'
}

View file

@ -0,0 +1,9 @@
package com.simplemobiletools.commons.interfaces
import java.util.*
interface MyAdapterListener {
fun toggleItemSelectionAdapter(select: Boolean, position: Int)
fun getSelectedPositions(): HashSet<Int>
}