Skip to content

Instantly share code, notes, and snippets.

@dbarks1024
Created October 23, 2018 13:08
Show Gist options
  • Save dbarks1024/0d468a119ebe658030ccfac527a09f85 to your computer and use it in GitHub Desktop.
Save dbarks1024/0d468a119ebe658030ccfac527a09f85 to your computer and use it in GitHub Desktop.
override fun onBindSlice(sliceUri: Uri): Slice? {
val context = getContext() ?: return null
return when (sliceUri.path) {
"/range" -> {
// Display range slice
}
else -> {
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment