-
-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Movies: convert collection and watchlist to paging
- Loading branch information
1 parent
9fcae4d
commit 52c9841
Showing
15 changed files
with
166 additions
and
344 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
app/src/main/java/com/battlelancer/seriesguide/movies/MoviesCollectionViewModel.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright 2024 Uwe Trottmann | ||
|
||
package com.battlelancer.seriesguide.movies | ||
|
||
import android.app.Application | ||
import com.battlelancer.seriesguide.provider.SeriesGuideContract | ||
|
||
class MoviesCollectionViewModel(application: Application) : MoviesWatchedViewModel(application) { | ||
|
||
override val selection: String | ||
get() = SeriesGuideContract.Movies.SELECTION_COLLECTION | ||
|
||
} |
130 changes: 0 additions & 130 deletions
130
app/src/main/java/com/battlelancer/seriesguide/movies/MoviesCursorAdapter.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.