Merge pull request #5554 from karkaminski/enhancement/remove_resizing_text

removed resizing text from popup player
This commit is contained in:
XiangRongLin 2021-02-15 16:15:27 +01:00 committed by GitHub
commit 5bc0a8fba1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
69 changed files with 0 additions and 103 deletions

View file

@ -4049,10 +4049,6 @@ public final class Player implements
return binding.currentDisplaySeek;
}
public TextView getResizingIndicator() {
return binding.resizingIndicator;
}
@Nullable
public WindowManager.LayoutParams getPopupLayoutParams() {
return popupLayoutParams;

View file

@ -251,7 +251,6 @@ public class PlayerGestureListener
player.hideControls(0, 0);
animate(player.getCurrentDisplaySeek(), false, 0, ALPHA, 0);
animate(player.getResizingIndicator(), true, 200, ALPHA, 0);
}
@Override
@ -259,7 +258,6 @@ public class PlayerGestureListener
if (DEBUG) {
Log.d(TAG, "onPopupResizingEnd called");
}
animate(player.getResizingIndicator(), false, 100, ALPHA, 0);
}
}