-
-
Notifications
You must be signed in to change notification settings - Fork 530
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
adds "shuffle with" button if "always ask" is selected as preferred player. #2459
Conversation
app/src/main/java/org/jellyfin/androidtv/ui/itemdetail/FullDetailsFragment.java
Fixed
Show fixed
Hide fixed
app/src/main/java/org/jellyfin/androidtv/ui/itemdetail/FullDetailsFragment.java
Fixed
Show fixed
Hide fixed
app/src/main/java/org/jellyfin/androidtv/ui/itemdetail/FullDetailsFragment.java
Fixed
Show fixed
Hide fixed
app/src/main/java/org/jellyfin/androidtv/ui/itemdetail/FullDetailsFragment.java
Outdated
Show resolved
Hide resolved
I think that's fine.
In this case, good enough. This file is a bit messy anyway so I'm not that picky reviewing it.
They could probably be in the same PR but tbh it makes sense to hide those options if the user chooses to not have a default player.
New files are Kotlin, existing files may be converted but the left-over Java files is mostly stuff that's slowly getting rewritten so I wouldn't bother with it if I were you. |
bc35048
to
ae4d7d4
Compare
Luckily it's not just me who finds this messy. Are there any running project/plans to refactor this file? Reason I ask is because I also wanted to take a look at language settings (for subtitles e.g.) before you press play: i think that also touches this file quite a lot.
Check! I'll leave this PR as-is. So If you are happy with this PR you can merge it. I won't be adding features. |
app/src/main/java/org/jellyfin/androidtv/ui/itemdetail/FullDetailsFragment.java
Outdated
Show resolved
Hide resolved
app/src/main/java/org/jellyfin/androidtv/ui/itemdetail/FullDetailsFragment.java
Outdated
Show resolved
Hide resolved
app/src/main/java/org/jellyfin/androidtv/ui/itemdetail/FullDetailsFragment.java
Outdated
Show resolved
Hide resolved
I'm currently working on rewriting all playback code (#1057) and after that I want to rewrite the UI with Jetpack Compose when it's ready for Android TV. |
ae4d7d4
to
c93c2a4
Compare
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.
Thanks for the PR!
Changes
Shows the "shuffle" button when video player is set to "always ask". Selecting the shuffle button prompts the player types to be selected.
Issues
Implements #2321
Some questions for the reviewers
playWithItemMenu
which is used within shuffleMenu and PlayMenu. Is this the correct way to implement such a feature?