I am new in Android application development and I don't know if there is any good tactic for this. Specifically, I want all my fragments and activities to recognise only the first touch on the screen and ignore any other. If anyone knows a better way just let me know..
Until now i have tried to add:
<item name="android:windowEnableSplitTouch">false</item>
in my xml style
and i also add <uses-feature android:name="android.hardware.touchscreen.multitouch" android:required="false" />
in my manifest file
Thanks in advance