Skip to content

Instantly share code, notes, and snippets.

View kford55's full-sized avatar

Kenneth Ford kford55

View GitHub Profile
@kford55
kford55 / ctrl_zoom.kt
Last active April 13, 2018 16:14
Chrome OS Ctrl-based zoom
testButton.setOnGenericMotionListener {
view, motionEvent ->
if (motionEvent.actionMasked == MotionEvent.ACTION_SCROLL
&& KeyEvent.metaStateHasModifiers(motionEvent.metaState, KeyEvent.META_CTRL_ON)) {
//zoom action
true
}
false
}