47 lines
1017 B
Java
47 lines
1017 B
Java
package ch.pizzacucina.android.view;
|
|
|
|
import android.content.Context;
|
|
import androidx.viewpager.widget.ViewPager;
|
|
import android.util.AttributeSet;
|
|
import android.view.MotionEvent;
|
|
|
|
/**
|
|
* Created by cimenmus on 17/10/2017.
|
|
*/
|
|
|
|
public class NoSwipeViewPager extends ViewPager {
|
|
|
|
private boolean enabled;
|
|
|
|
public NoSwipeViewPager(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
this.enabled = false;
|
|
}
|
|
|
|
@Override
|
|
public boolean onTouchEvent(MotionEvent event) {
|
|
if (this.enabled) {
|
|
return super.onTouchEvent(event);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean onInterceptTouchEvent(MotionEvent event) {
|
|
if (this.enabled) {
|
|
return super.onInterceptTouchEvent(event);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public void setPagingEnabled(boolean enabled) {
|
|
this.enabled = enabled;
|
|
}
|
|
|
|
@Override
|
|
public boolean canScrollHorizontally(int direction) {
|
|
return false;
|
|
}
|
|
} |