-
-
Notifications
You must be signed in to change notification settings - Fork 521
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
Fix unlabeled image buttons for accessibility #586
Conversation
app/src/main/java/org/jellyfin/androidtv/ui/livetv/LiveTvGuideActivity.java
Outdated
Show resolved
Hide resolved
app/src/main/java/org/jellyfin/androidtv/ui/playback/AudioNowPlayingActivity.java
Outdated
Show resolved
Hide resolved
...main/java/org/jellyfin/androidtv/ui/playback/overlay/CustomPlaybackTransportControlGlue.java
Outdated
Show resolved
Hide resolved
I think I just made a mistake by fetching and rebasing the upstream commits. Should I git rebase and drop the upstream commits? |
Yes, please do |
app/src/main/java/org/jellyfin/androidtv/ui/livetv/LiveTvGuideActivity.java
Outdated
Show resolved
Hide resolved
app/src/main/java/org/jellyfin/androidtv/ui/playback/AudioNowPlayingActivity.java
Outdated
Show resolved
Hide resolved
app/src/main/java/org/jellyfin/androidtv/ui/playback/AudioNowPlayingActivity.java
Outdated
Show resolved
Hide resolved
Hi @jemlule, are you still interested in finishing this pull request? |
Yes I am! Sorry for being inactive. |
Here is an overview of what got changed by this pull request: Issues
======
- Added 3
See the complete overview on Codacy |
@@ -353,6 +353,9 @@ private void prepareBackgroundManager() { | |||
getActivity().getWindowManager().getDefaultDisplay().getMetrics(mMetrics); | |||
} | |||
|
|||
protected ImageButton mSortButton; |
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.
@@ -353,6 +353,9 @@ private void prepareBackgroundManager() { | |||
getActivity().getWindowManager().getDefaultDisplay().getMetrics(mMetrics); | |||
} | |||
|
|||
protected ImageButton mSortButton; | |||
protected ImageButton mSearchButton; | |||
protected ImageButton mSettingsButton; |
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.
@@ -353,6 +353,9 @@ private void prepareBackgroundManager() { | |||
getActivity().getWindowManager().getDefaultDisplay().getMetrics(mMetrics); | |||
} | |||
|
|||
protected ImageButton mSortButton; | |||
protected ImageButton mSearchButton; |
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.
Changes
setContentDescription
to the buttons unlabeled: those to sort the movies/musics, those before the play/resume (put to favorite, mark the media viewed…) and those in the playback overlay.Issues
Fixes #418