-
-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new experimental picture viewer #1829
Add new experimental picture viewer #1829
Conversation
parentId = itemResponse.albumId, | ||
includeItemTypes = setOf(BaseItemKind.PHOTO), | ||
fields = setOf(ItemFields.PRIMARY_IMAGE_ASPECT_RATIO), | ||
sortBy = listOf(ItemFields.SORT_NAME.name), // TODO: Order should be consistent with the stdgridview the user comes from, which allows to change the order |
Check notice
Code scanning
Line detected, which is longer than the defined maximum line length in the code style.
.condition { !binding.actions.isVisible } | ||
.body { pictureViewerViewModel.showPrevious() } | ||
|
||
keyDown(KeyEvent.KEYCODE_MEDIA_SKIP_BACKWARD, KeyEvent.KEYCODE_MEDIA_PREVIOUS) |
Check warning
Code scanning / Android Lint
Using inlined constants on older versions
.condition { !binding.actions.isVisible } | ||
.body { pictureViewerViewModel.showNext() } | ||
|
||
keyDown(KeyEvent.KEYCODE_MEDIA_SKIP_FORWARD, KeyEvent.KEYCODE_MEDIA_NEXT) |
Check warning
Code scanning / Android Lint
Using inlined constants on older versions
app:layout_constraintStart_toStartOf="parent" | ||
tools:visibility="visible"> | ||
|
||
<ImageButton |
Check warning
Code scanning / Android Lint
Image without contentDescription
android:layout_width="12dp" | ||
android:layout_height="wrap_content" /> | ||
|
||
<ImageButton |
Check warning
Code scanning / Android Lint
Image without contentDescription
android:layout_width="12dp" | ||
android:layout_height="wrap_content" /> | ||
|
||
<ImageButton |
Check warning
Code scanning / Android Lint
Image without contentDescription
bbae035
to
4d2e0b2
Compare
app/src/main/java/org/jellyfin/androidtv/ui/picture/PictureViewerFragment.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/org/jellyfin/androidtv/ui/picture/PictureViewerViewModel.kt
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure how perfect you are striving to get this for the first implementation, but I noticed a few issues:
- There seems to be an issue when changing photos (either manually or via the slideshow) with gifs. The image will change briefly then go back to displaying the previous image.
- In large photo libraries it seems like the current "position" is getting lost somehow. For example, I started playback on photo 301, click next, and a previous photo is displayed instead of photo 302.
It would probably be a good idea to show the photo name at least when the controls are visible (this would also help diagnose issue 2 further since I have many copies of the same photo in that album).
It might be good to show the "playback" controls by default to help with discoverability and hide them after a short time. I also didn't find pushing "up" to show the controls intuitive... I'm more accustomed to services using the "down" button to display them. That is more of a personal preference probably and there is some inconsistency among other services on that.
I haven't experienced this issue but I'd say it's out of scope for this initial PR.
I'll need to create a bigger album (biggest is about 40 items right now) to test this but I've already made an task for lazy loading which might fix this issue.
Agreed, this was one of the things I wanted to add but not in this initial PR. This one too is already a task on the big list, it's not a feature in the current viewer either (except if you count that browse thingy that you can open while viewing).
Added support for KEYCODE_DPAD_DOWN to open the controls, I think opening the controls makes sense when the timer to auto-close it is added. I've updated the task to describe this behavior. |
d8da6cb
to
8a9c94b
Compare
parentId = itemResponse.parentId, | ||
includeItemTypes = setOf(BaseItemKind.PHOTO), | ||
fields = setOf(ItemFields.PRIMARY_IMAGE_ASPECT_RATIO), | ||
sortBy = listOf(ItemFields.SORT_NAME.name), // TODO: Order should be consistent with the stdgridview the user comes from, which allows to change the order |
Check notice
Code scanning
Line detected, which is longer than the defined maximum line length in the code style.
I started work on this around 2 months ago but didn't completely finish it yet. It already uses a feature flag which is disabled in releases so it won't hurt to merge it. I've made a new column in my board (https://github.com/jellyfin/jellyfin-androidtv/projects/15#column-19021853) that shows the remaining tasks.
The biggest feature is that it doesn't depend on the media manager anymore so it's sort of a part of the playback rewrite (#1057).
Changes
Issues