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.

link|improve this question

71% accept rate
does't my post answers your question?? – Hazem Farahat May 29 '11 at 11:17
feedback

2 Answers

add this class to your code:

import android.content.Context;
import android.os.Vibrator;
import android.widget.Toast;;

public class VibratingToast extends Toast{

public VibratingToast(Context context,CharSequence text, int duration) {
    super(context);
    Vibrator v = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
    v.vibrate(300); 
    super.makeText(context, text, duration).show();
}

}

and then you can call a toast by adding this line when you want to show a vibrating toast:

new VibratingToast(this, "Hi,....", Toast.LENGTH_SHORT);

You will also need, if you have't already, to add vibration permission in your manifest file

<uses-permission android:name="android.permission.VIBRATE" />
link|improve this answer
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.

public class MyNotification extends Notification {
    public MyNotification() {
        super();
        vibrate = /* Your vibration parameters here */;
        // Or to use default vibration:
        // flags = DEFAULT_VIBRATE;
    }
}

Then, when you want to notify:

notificationManager.notify(new MyNotification());
link|improve this answer
I was with you to the simply part ;) Could you please elaborate? I am very new to Java/Android. Many thanks. – Entropy1024 Nov 17 '10 at 16:43
I added some code to the answer – MarvinLabs Nov 17 '10 at 21:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.