Update app/src/main/java/org/schabi/newpipe/fragments/detail/DescriptionFragment.java

Co-authored-by: Stypox <stypox@pm.me>
This commit is contained in:
Isira Seneviratne 2022-07-19 05:10:51 +05:30 committed by Isira Seneviratne
parent f1de353b74
commit e772244440
1 changed files with 2 additions and 7 deletions

View File

@ -26,9 +26,6 @@ import org.schabi.newpipe.util.NavigationHelper;
import org.schabi.newpipe.util.external_communication.ShareUtils;
import org.schabi.newpipe.util.external_communication.TextLinkifier;
import java.util.List;
import java.util.stream.Collectors;
import icepick.State;
import io.reactivex.rxjava3.disposables.CompositeDisposable;
@ -208,16 +205,14 @@ public class DescriptionFragment extends BaseFragment {
final ItemMetadataTagsBinding itemBinding
= ItemMetadataTagsBinding.inflate(inflater, layout, false);
final List<String> tags = streamInfo.getTags().stream().sorted()
.collect(Collectors.toList());
for (final String tag : tags) {
streamInfo.getTags().stream().sorted().forEach(tag -> {
final Chip chip = (Chip) inflater.inflate(R.layout.chip,
itemBinding.metadataTagsChips, false);
chip.setText(tag);
chip.setOnClickListener(this::onTagClick);
chip.setOnLongClickListener(this::onTagLongClick);
itemBinding.metadataTagsChips.addView(chip);
}
});
layout.addView(itemBinding.getRoot());
}