mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-25 01:20:34 +00:00
Merge pull request #3337 from AioiLight/blocking-gesture-when-touch-from-navbar
Block the gesture when touch it from NavigationBar or StatusBar.
This commit is contained in:
commit
b3eadb557b
@ -1325,6 +1325,13 @@ public final class MainVideoPlayer extends AppCompatActivity
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final boolean isTouchingStatusBar = initialEvent.getY() < getStatusBarHeight();
|
||||||
|
final boolean isTouchingNavigationBar = initialEvent.getY()
|
||||||
|
> playerImpl.getRootView().getHeight() - getNavigationBarHeight();
|
||||||
|
if (isTouchingStatusBar || isTouchingNavigationBar) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// if (DEBUG) {
|
// if (DEBUG) {
|
||||||
// Log.d(TAG, "MainVideoPlayer.onScroll = " +
|
// Log.d(TAG, "MainVideoPlayer.onScroll = " +
|
||||||
// "e1.getRaw = [" + initialEvent.getRawX() + ", "
|
// "e1.getRaw = [" + initialEvent.getRawX() + ", "
|
||||||
@ -1413,6 +1420,22 @@ public final class MainVideoPlayer extends AppCompatActivity
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private int getNavigationBarHeight() {
|
||||||
|
int resId = getResources().getIdentifier("navigation_bar_height", "dimen", "android");
|
||||||
|
if (resId > 0) {
|
||||||
|
return getResources().getDimensionPixelSize(resId);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
private int getStatusBarHeight() {
|
||||||
|
int resId = getResources().getIdentifier("status_bar_height", "dimen", "android");
|
||||||
|
if (resId > 0) {
|
||||||
|
return getResources().getDimensionPixelSize(resId);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
private void onScrollEnd() {
|
private void onScrollEnd() {
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
Log.d(TAG, "onScrollEnd() called");
|
Log.d(TAG, "onScrollEnd() called");
|
||||||
|
Loading…
Reference in New Issue
Block a user