I have 8 buttons I would like the app to detect the buttons by just scrolling on the screen and not by touching? like the accessibility feature in Jelly bean? I am not sure how to call that feature as? Gesture? Motion sense?
Is this possible? What should I look for?
Thanks!
By default the UI elements in Android are focusable by scrollballs, arrow keys, etc… The Views have an View.setOnFocusChangedListener callback. You can also set focus on elements programmatically.
Some example code I quickly wrote and did not test.