ScaleGestureDetector.QuickScaleEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Return whether the quick scale gesture, in which the user performs a double tap followed by a
swipe, should perform scaling. -or- Set whether the associated OnScaleGestureListener
should receive onScale callbacks
when the user performs a doubleTap followed by a swipe.
public virtual bool QuickScaleEnabled { [Android.Runtime.Register("isQuickScaleEnabled", "()Z", "GetIsQuickScaleEnabledHandler")] get; [Android.Runtime.Register("setQuickScaleEnabled", "(Z)V", "GetSetQuickScaleEnabled_ZHandler")] set; }
[<get: Android.Runtime.Register("isQuickScaleEnabled", "()Z", "GetIsQuickScaleEnabledHandler")>]
[<set: Android.Runtime.Register("setQuickScaleEnabled", "(Z)V", "GetSetQuickScaleEnabled_ZHandler")>]
member this.QuickScaleEnabled : bool with get, set
Property Value
- Attributes
Remarks
Property getter documentation:
Return whether the quick scale gesture, in which the user performs a double tap followed by a swipe, should perform scaling. #setQuickScaleEnabled(boolean)
.
Java documentation for android.view.ScaleGestureDetector.isQuickScaleEnabled()
.
Property setter documentation:
Set whether the associated OnScaleGestureListener
should receive onScale callbacks when the user performs a doubleTap followed by a swipe. Note that this is enabled by default if the app targets API 19 and newer.
Java documentation for android.view.ScaleGestureDetector.setQuickScaleEnabled(boolean)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.