Is it possible to make the phone vibrate for ANY toast message in your program? Or do you have to insert a vibrate command on each toast?
Cheers.
feedback
|
|
add this class to your code:
} and then you can call a toast by adding this line when you want to show a vibrating toast:
You will also need, if you have't already, to add vibration permission in your manifest file
| ||||
|
feedback
|
|
You could simply subclass the Notification class and have its vibrate command initialised in the Constructor. Then instead of using the SDK Notification class, use that one each time you need to notify in your application.
Then, when you want to notify:
| |||||
feedback
|