Skip to content

Instantly share code, notes, and snippets.

View klarson2's full-sized avatar

Kris Larson klarson2

View GitHub Profile
@klarson2
klarson2 / ZoomLayout.java
Last active January 5, 2023 00:04 — forked from anorth/ZoomLayout.java
Pinch-zoomable Android frame layout -- modified to center the zoom based on the user's gesture
package au.id.alexn;
import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.view.ScaleGestureDetector;
import android.view.View;
import android.widget.FrameLayout;