I want to increment int variable when I for e.g. swipe to the right, it's possible? I have swipe control code like this ant I want to increment variable myint.
public void onRightToLeftSwipe(){
Log.i(logTag, "RightToLeftSwipe!");
myint = myint + 1;
}