Android Question [Solved] Disable Multi-Touch

73Challenger

Member
Licensed User
There was a previous thread (link below) asking how to do this, with no answer available at that time. I ran across an answer and thought I would document it for future searches. Tested and works in my app.

Disable Multi-Touch:
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
    ...
    <item name="android:splitMotionEvents">false</item>
    <item name="android:windowEnableSplitTouch">false</item>
</style>
 
Top