- Layout Changes

- HLS media extraction
This commit is contained in:
Michatec
2026-01-25 16:08:22 +01:00
parent 0adb906438
commit d3dfcb98f9
3 changed files with 45 additions and 9 deletions

View File

@@ -471,18 +471,19 @@ class CollectionAdapter(
} else if (holder is StationViewHolder) {
// get station from position
collection.stations[holder.bindingAdapterPosition]
val station: Station = collection.stations[holder.bindingAdapterPosition]
for (data in payloads) {
when (data as Int) {
Keys.HOLDER_UPDATE_COVER -> {
// todo implement
setStationImage(holder, station)
setStarredIcon(holder, station)
}
Keys.HOLDER_UPDATE_NAME -> {
// todo implement
setStationName(holder, station)
}
Keys.HOLDER_UPDATE_PLAYBACK_STATE -> {
// todo implement
setStationButtons(holder, station)
}
Keys.HOLDER_UPDATE_PLAYBACK_PROGRESS -> {
// todo implement