revanced-integrations/app/src/main/java/app/revanced/github/PinchToZoomPatch.java

19 lines
623 B
Java

package app.revanced.github;
import android.annotation.SuppressLint;
import android.util.Log;
import android.view.ViewGroup;
public final class PinchToZoomPatch {
@SuppressLint("StaticFieldLeak")
private static ViewGroup recyclerView;
public static void addPinchToZoomGesture(final ViewGroup codeViewRecycleView) {
if (recyclerView == codeViewRecycleView) return;
recyclerView = codeViewRecycleView;
recyclerView.setOnTouchListener(new PinchToZoomGesture(recyclerView.getContext()));
Log.d("revanced", "Adding pinch to zoom event handler to " + codeViewRecycleView);
}
}