Android View onTouchListener¶
OnTouchListener not working ?¶
If your app is not registering touch events once the Pointzi SDK has been integrated, it may be because the OntouchListener is not working. As Android only allows one OnTouchListener, please follow the steps below to ensure the apps native OntouchListener and the Pointzi OntouchListener are working properly.
1 2 3 4 5 6 7 8 9 10 11 |
|
Enable/Disable Pointzi OnTouchListener¶
Available for Pointzi Version equal to or greater than 1.6.3, you can also enable or disable Pointzi OnTouchListener. In the following function by passing true it will enable/re-enable the Pointzi OnTouchListener, and a false value will completely disable the feature.
1 2 3 4 |
|
Still having trouble? See our Source code
Explanation¶
Pointzi uses the OnTouchListener to capture events in your app. These events - including page views or touch events - can then be used in experiments as filters. For example, to target users the third time they enter a view, the OnTouchListener would be required to capture the number of times a user has entered a screen view before that time.