What is a "contextual click" in the Android SDK 23

some new context click APIs in the android SDK. And I did not find a full explanation for them.

Some search results (like this for SketchUp) make me think that the term “contextual click” is like a right-click. If so, is it possible to trigger a “contextual click” using the touch screen?

+7
android
source share
1 answer

If you look at the code changes , a contextual click can be implemented using the stylus or the mouse.

Developer Comment

Based on the feedback from the API reviews, we should use onContextClick instead of onStylusButtonPress.

Method Description

Additionally listens for right-clicks and calls onContextClick for them.

+7
source share

All Articles