43 lines
921 B
Java
43 lines
921 B
Java
package com.herbron.moodl.CustomLayouts;
|
|
|
|
import android.content.Context;
|
|
import android.support.v4.view.ViewPager;
|
|
import android.util.AttributeSet;
|
|
import android.view.MotionEvent;
|
|
|
|
/**
|
|
* Created by Administrator on 14/05/2018.
|
|
*/
|
|
|
|
public class CustomViewPager extends ViewPager {
|
|
|
|
private boolean enabled;
|
|
|
|
public CustomViewPager(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
this.enabled = true;
|
|
}
|
|
|
|
@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;
|
|
}
|
|
}
|