blob: 356268922dc12aa9dd0c50aa2ea344d861337df6 [file] [log] [blame]
package org.wordpress.android.util.widgets;
import android.content.Context;
import android.support.v4.widget.SwipeRefreshLayout;
import android.util.AttributeSet;
import android.view.MotionEvent;
import org.wordpress.android.util.AppLog;
import org.wordpress.android.util.AppLog.T;
public class CustomSwipeRefreshLayout extends SwipeRefreshLayout {
public CustomSwipeRefreshLayout(Context context) {
super(context);
}
public CustomSwipeRefreshLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
try{
return super.onTouchEvent(event);
} catch(IllegalArgumentException e) {
// Fix for https://github.com/wordpress-mobile/WordPress-Android/issues/2373
// Catch IllegalArgumentException which can be fired by the underlying SwipeRefreshLayout.onTouchEvent()
// method.
// When android support-v4 fixes it, we'll have to remove that custom layout completely.
AppLog.e(T.UTILS, e);
return true;
}
}
}