mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-22 11:02:35 +01:00
Add content description to detail fragment tabs
This commit is contained in:
parent
750c4ffbd3
commit
e840d42fb9
@ -33,6 +33,7 @@ import androidx.annotation.AttrRes;
|
|||||||
import androidx.annotation.DrawableRes;
|
import androidx.annotation.DrawableRes;
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.annotation.StringRes;
|
||||||
import androidx.appcompat.app.AlertDialog;
|
import androidx.appcompat.app.AlertDialog;
|
||||||
import androidx.appcompat.app.AppCompatActivity;
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
import androidx.appcompat.content.res.AppCompatResources;
|
import androidx.appcompat.content.res.AppCompatResources;
|
||||||
@ -154,6 +155,7 @@ public final class VideoDetailFragment
|
|||||||
private boolean showDescription;
|
private boolean showDescription;
|
||||||
private String selectedTabTag;
|
private String selectedTabTag;
|
||||||
@AttrRes @NonNull final List<Integer> tabIcons = new ArrayList<>();
|
@AttrRes @NonNull final List<Integer> tabIcons = new ArrayList<>();
|
||||||
|
@StringRes @NonNull final List<Integer> tabContentDescriptions = new ArrayList<>();
|
||||||
private boolean tabSettingsChanged = false;
|
private boolean tabSettingsChanged = false;
|
||||||
|
|
||||||
@State
|
@State
|
||||||
@ -905,23 +907,27 @@ public final class VideoDetailFragment
|
|||||||
}
|
}
|
||||||
pageAdapter.clearAllItems();
|
pageAdapter.clearAllItems();
|
||||||
tabIcons.clear();
|
tabIcons.clear();
|
||||||
|
tabContentDescriptions.clear();
|
||||||
|
|
||||||
if (shouldShowComments()) {
|
if (shouldShowComments()) {
|
||||||
pageAdapter.addFragment(
|
pageAdapter.addFragment(
|
||||||
CommentsFragment.getInstance(serviceId, url, title), COMMENTS_TAB_TAG);
|
CommentsFragment.getInstance(serviceId, url, title), COMMENTS_TAB_TAG);
|
||||||
tabIcons.add(R.drawable.ic_comment_white_24dp);
|
tabIcons.add(R.drawable.ic_comment_white_24dp);
|
||||||
|
tabContentDescriptions.add(R.string.comments_tab_description);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (showRelatedStreams && binding.relatedStreamsLayout == null) {
|
if (showRelatedStreams && binding.relatedStreamsLayout == null) {
|
||||||
//temp empty fragment. will be updated in handleResult
|
//temp empty fragment. will be updated in handleResult
|
||||||
pageAdapter.addFragment(new Fragment(), RELATED_TAB_TAG);
|
pageAdapter.addFragment(new Fragment(), RELATED_TAB_TAG);
|
||||||
tabIcons.add(R.drawable.ic_art_track_white_24dp);
|
tabIcons.add(R.drawable.ic_art_track_white_24dp);
|
||||||
|
tabContentDescriptions.add(R.string.related_streams_tab_description);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (showDescription) {
|
if (showDescription) {
|
||||||
// temp empty fragment. will be updated in handleResult
|
// temp empty fragment. will be updated in handleResult
|
||||||
pageAdapter.addFragment(new Fragment(), DESCRIPTION_TAB_TAG);
|
pageAdapter.addFragment(new Fragment(), DESCRIPTION_TAB_TAG);
|
||||||
tabIcons.add(R.drawable.ic_description_white_24dp);
|
tabIcons.add(R.drawable.ic_description_white_24dp);
|
||||||
|
tabContentDescriptions.add(R.string.description_tab_description);
|
||||||
}
|
}
|
||||||
pageAdapter.notifyDataSetUpdate();
|
pageAdapter.notifyDataSetUpdate();
|
||||||
|
|
||||||
@ -933,20 +939,22 @@ public final class VideoDetailFragment
|
|||||||
binding.viewPager.setCurrentItem(position);
|
binding.viewPager.setCurrentItem(position);
|
||||||
}
|
}
|
||||||
binding.tabLayout.setVisibility(View.VISIBLE);
|
binding.tabLayout.setVisibility(View.VISIBLE);
|
||||||
updateTabIcons();
|
updateTabIconsAndContentDescriptions();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* To be called whenever {@link #pageAdapter} is modified, since that triggers a refresh in
|
* To be called whenever {@link #pageAdapter} is modified, since that triggers a refresh in
|
||||||
* {@link FragmentVideoDetailBinding#tabLayout} resetting all tab's icons. This reads icons from
|
* {@link FragmentVideoDetailBinding#tabLayout} resetting all tab's icons and content
|
||||||
* {@link #tabIcons}, which are set in {@link #initTabs()}
|
* descriptions. This reads icons from {@link #tabIcons} and content descriptions from
|
||||||
|
* {@link #tabContentDescriptions}, which are all set in {@link #initTabs()}.
|
||||||
*/
|
*/
|
||||||
private void updateTabIcons() {
|
private void updateTabIconsAndContentDescriptions() {
|
||||||
for (int i = 0; i < tabIcons.size(); ++i) {
|
for (int i = 0; i < tabIcons.size(); ++i) {
|
||||||
final TabLayout.Tab tab = binding.tabLayout.getTabAt(i);
|
final TabLayout.Tab tab = binding.tabLayout.getTabAt(i);
|
||||||
if (tab != null) {
|
if (tab != null) {
|
||||||
tab.setIcon(tabIcons.get(i));
|
tab.setIcon(tabIcons.get(i));
|
||||||
|
tab.setContentDescription(tabContentDescriptions.get(i));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -972,7 +980,7 @@ public final class VideoDetailFragment
|
|||||||
}
|
}
|
||||||
|
|
||||||
pageAdapter.notifyDataSetUpdate();
|
pageAdapter.notifyDataSetUpdate();
|
||||||
updateTabIcons();
|
updateTabIconsAndContentDescriptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean shouldShowComments() {
|
private boolean shouldShowComments() {
|
||||||
|
@ -281,6 +281,9 @@
|
|||||||
<string name="detail_uploader_thumbnail_view_description">Uploader\'s avatar thumbnail</string>
|
<string name="detail_uploader_thumbnail_view_description">Uploader\'s avatar thumbnail</string>
|
||||||
<string name="detail_likes_img_view_description">Likes</string>
|
<string name="detail_likes_img_view_description">Likes</string>
|
||||||
<string name="detail_dislikes_img_view_description">Dislikes</string>
|
<string name="detail_dislikes_img_view_description">Dislikes</string>
|
||||||
|
<string name="comments_tab_description">Comments</string>
|
||||||
|
<string name="related_streams_tab_description">Related streams</string>
|
||||||
|
<string name="description_tab_description">Description</string>
|
||||||
<string name="use_tor_title">Use Tor</string>
|
<string name="use_tor_title">Use Tor</string>
|
||||||
<string name="use_tor_summary">(Experimental) Force download traffic through Tor for increased privacy (streaming videos not yet supported).</string>
|
<string name="use_tor_summary">(Experimental) Force download traffic through Tor for increased privacy (streaming videos not yet supported).</string>
|
||||||
<string name="report_error">Report error</string>
|
<string name="report_error">Report error</string>
|
||||||
|
Loading…
Reference in New Issue
Block a user