Haptic Feedback ? Haptic feedback, often referred to as simply "haptics", is the use of the sense of touch in a user interface design to provide information to an end user. The resistive force that some "force feedback" joysticks and video game steering wheels provide is another form of haptic feedback. Haptic Feedback in Android??? Haptic feedback (commonly referred to as haptics) is the use of touchfeedback to the end user. You know how your Android phone vibrates a tiny bit when you tap one of the navigation buttons? That's haptics at work. How it works ? By default haptic feedback setter works only for long press. Here we are implementing this haptic feedback in simple onClick You need to add the "android.permission.VIBRATE" permission to the program's manifest. You can do so by adding the following to the "AndroidManifest.xml" file, <uses-permission android:name = "android.permission.VIBRATE"...
Learn with Samples