kopia lustrzana https://github.com/TeamNewPipe/NewPipe
NullPointerException on screen rotation during exit fix (#5976)
rodzic
aaea661b70
commit
8df935f5fe
|
@ -1009,6 +1009,12 @@ public final class VideoDetailFragment
|
|||
}
|
||||
|
||||
public void updateTabLayoutVisibility() {
|
||||
|
||||
if (binding == null) {
|
||||
//If binding is null we do not need to and should not do anything with its object(s)
|
||||
return;
|
||||
}
|
||||
|
||||
if (pageAdapter.getCount() < 2 || binding.viewPager.getVisibility() != View.VISIBLE) {
|
||||
// hide tab layout if there is only one tab or if the view pager is also hidden
|
||||
binding.tabLayout.setVisibility(View.GONE);
|
||||
|
|
Ładowanie…
Reference in New Issue