Tagged Questions
The vibrate tag has no wiki summary.
7
votes
4answers
8k views
How do you make the iPhone vibrate for arbitrary durations?
In the iPhone 2.x firmware, can you make the iPhone vibrate for durations other than the system-defined:
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
In jailbroken phones, you used to be ...
6
votes
3answers
4k views
Making the iPhone vibrate
How can the iPhone be set to vibrate once?
For example, when a player loses a life or the game is over, the iPhone should vibrate.
5
votes
1answer
279 views
iPhone - How do I know if the vibrate is on or off for iOS?
Do you know how I may know if the iPhone is on vibrate mode ?
I don't find anything about this on the Web... Too tired to see ?
I want to display an icon in the app so that the user can know looking ...
4
votes
2answers
95 views
Can you increase vibrator strength on android devices?
Is it possible to increase the strength of the alarm vibration?
4
votes
2answers
164 views
Vibrate until message box closed Windows Phone 7
I have a timer app and I want to vibrate the phone once the timer has finished. I can currently play a sound until the OK button is pressed, but it only vibrates once. How can repeat the vibration ...
4
votes
2answers
602 views
Android Vibrate on toast (Homer: Mmmm vibrate on toast)
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.
4
votes
1answer
968 views
Android - Vibrating device doesn't work
I actually have an app that I test with two devices. One LG GW620, and one Samsung Spica.
I would like when User touch the screen, the device vibrate.
In fact, On the LG GW620, the device vibrate ...
4
votes
2answers
424 views
MonoTouch on Device - Vibrates at launch?
I just deployed my app to my iPhone for the first time. Every time it launches it vibrates before running, and it runs fine. The build is a Debug | iPhone one of my app.
Any ideas why it vibrates ...
3
votes
3answers
63 views
Android: declined permission for vibrator (what happens?)
I have made an app that has a permission for use of the vibrator , and when i install that app how do get to accept or decline that permission? it seems like i have know knowledge of the permission it ...
3
votes
1answer
373 views
Vibrate iPhone for specified duration
I would like to be able to vibrate the iPhone for a specified duration. Using the AudioToolbox framework, it will vibrate for about 2 seconds, when I use this code:
AudioServicesPlaySystemSound ...
3
votes
2answers
677 views
android Phone Vibration doesn't stop using cancel method
I wrote some code that mute the phone whenever an incoming call is received.
When the phone in vibrate mode I use the following code to stop the phone vibration:
Vibrator vib = (Vibrator) ...
3
votes
1answer
380 views
IPhone SDK - Vibration triggered by Thread
I'm currently working on an IPhone App that should make the phone vibrate if a special event occurs.
The checks to trigger the alert is done in a thread.
Unfortunately the phone won't vibrate if I ...
2
votes
0answers
72 views
Vibrate setting not turning off on receiving incoming call - Android
I want to turn off device vibrate setting when a call comes. I have implemented a BroadcastReceiver for this feature which performs the action on receiving PHONE_STATE broadcast. The problem is that I ...
2
votes
1answer
274 views
Android, change the profile of the phone
I would like to change the profile of the phone, for instance change from vibrator mode to normal mode or even plane mode. I cannot find in the permission list anything to allow this type of change. ...
2
votes
1answer
904 views
In Android (using Java), how can I set the ring volume (to a specified number)?
So in my application, I have a seekbar that allows the user to set the ringer volume (0 - 100). I can't seem to find a way to set the ringer volume to a specified number. I looked through the ...
2
votes
1answer
342 views
How to vibrate the phone in sync with the ringtone?
I want to vibrate the phone in the same way as the incoming call in sync with the ringtone. How do I achieve it?
1
vote
2answers
69 views
Android: vibrator method (if phone has no vibrator?)
I want to use the vibrator method in my app, and i have got it working on my phone which has a vibrator which is great. however phones that don't have a vibrator what happens. does it not work at all? ...
1
vote
2answers
31 views
Notification not making sound or vibration?
i am making a program and i want the app to make a notification. when the notification goes off then only the tickertext is displayed. No sound or vibration or light.
here is an example of my code.
...
1
vote
3answers
149 views
Vibrate pattern for incorrect input (Android)
I know how to create a vibrate pattern e.g:
Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
long pattern[] = new long[] {0, 200, 100, 200};
vibrator.vibrate(pattern, -1);
...
1
vote
1answer
117 views
Is it possible to determine keyboard vibrate is on?
I'm development soft keyboard and want it to depend on global keyboard settings, especially vibrating.
So is there way to read "Settings -> Language&keyboard -> Touch Input -> Text Input -> Vbrate ...
1
vote
0answers
71 views
Change speed of vibrator with AudioToolbox
Im trying to find out how to change the speed of the vibrator so it can go faster or slower.
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
Im using AudioToolbox framwork
...
1
vote
1answer
211 views
Setting Vibrate while in a lock state Android
I've hit an interesting part in my studies with Android. I'm as I go through I have created a timed PendingIntent to go off. Before it goes off, I lock the phone. When it goes off. I see it runs ...
1
vote
4answers
278 views
How would I use javascript to make an image “jiggle” or “shiver”?
So my question is simple, I'm building a webpage in HTML and I want to incorporate a little JavaScript into it so as to make an image "vibrate" or "jiggle" Basically move back and forth in a ...
1
vote
2answers
418 views
Android Notification vibration time
I am using following code for notification. It should vibrate and make sound at the time of event. But it is giving sound when the notification is creating, although the notification time is after 30 ...
1
vote
1answer
354 views
Android: creating an insistent alarm (ex: morning alarm, incoming call)
I'm writing an alarm-based application, and I'm looking for a way to wake up the user insistently. Ideally, I'd like the phone to vibrate, ring, and display a message. I tried a few different options, ...
1
vote
1answer
735 views
Android notification becomes ongoing with certain flags
Ok,
Possibly another bizare undocumented quirk of android, but I'm finding something quite odd when adding flags to my notification...
If I do this:
Notification notification = new ...
1
vote
2answers
387 views
Does anyone know how to access the ringer and vibrate settings for WP7 in code?
I'm doing a location aware app that will turn on and off the ringer and vibration according to location, I cannot find how to access these features in code.
1
vote
0answers
142 views
Android: Vibrate in accordance with selection checked in Sound Settings > General
How can I do that? I am using an emulator so I can't very well test it. My current code is shown below:
final NotificationManager manager = (NotificationManager) ...
1
vote
1answer
742 views
Android: Vibrator doesn't work. Foce Close emulator
hey Guys, I'm still an Android & Java noob, but everything I've seen is telling me this should totally work, but it doesn't! not in the emulator, not on the phone.. I'm trying to use the ...
1
vote
1answer
292 views
Modify notification of another app on Android
I'm trying to find out if it is possible to modify the notification of another app (the calendar app from Samsung) from my own app. Specifically I'd like to change the alarm for a calendar event from ...
1
vote
3answers
571 views
Simulating vibration as when receiving a call
So I am trying to simulate that the phone is receiving a call. I have successfully extracted the phones ring tone and played it. Now I want to simulate the vibration. While I can make the phone ...
0
votes
0answers
24 views
Android: How to provide customized vibration on specific incoming calls
The program functions like this: the user has a list of phone numbers, for which the cellphone could vibrate upon an incoming call only when no other system-wide application would provide vibration ...
0
votes
1answer
67 views
animation expanding wiggle
in this menu, de hovered div is expanding and all the other elements are shrinking
there is a small wiggle at the right side of the menu when changing size, which is really annoying
i've seen this: ...
0
votes
1answer
74 views
check phone settings for haptic feedback
Is there a way to check if the user has haptic feedback enabled or disabled in their android phone settings? While I think haptic feedback would be useful to my app, I also understand that some people ...
0
votes
1answer
100 views
Where is the setting setVibrateSetting(AudioManager.VIBRATE_TYPE_NOTIFICATION, false) in the phone?
i made an app that messes with the system vibrate settings. namely, it turns them off.
AudioManager audioManager = (AudioManager)ctx.getSystemService(Context.AUDIO_SERVICE);
...
0
votes
1answer
148 views
Basic4Android Vibration pattern
I'm trying to create an application that have different vibration patterns.
I've seen that the PhoneVibrate class has only a Vibrate(TimeMs as Long) function.
I've also seen that there also is ...
0
votes
1answer
175 views
Audio and vibrate working in simulator not on ios device
First off, I'm fairly new with objective C. I want to play a sound and vibrate under a certain condition. My iPhone 4 is not on mute, I've checked case sensitivity and used both AVAudioPlay and ...
0
votes
1answer
64 views
Vibration listener in Android
Is it possible to listen for phone vibration in Android?
Basically, I need my background component to wake-up and do some stuff whenever the phone vibrates.
Thanks in advance...
0
votes
1answer
349 views
how can I check if the iOS device can vibrate
Currently only iPhone supports the vibrations how can I check if my device supports vibrations before calling the vibration function.
0
votes
4answers
1k views
Vibrate when hold down button
I am making an app where the user holds down a button to make the phone vibrate and i'm not sure how to make it so only when the button is being held down it vibrates, my code so far is.
package ...
0
votes
1answer
447 views
How to enable the haptic feedback (vibration) within a WebView?
I've been having a look to the built-in haptic feedback you can enable trough the KickBack setting on the Accesibility menu. It works like I expected on most of UI elements.
For those who are not ...
0
votes
1answer
566 views
android get vibration settings
I need to get the right settings for vibrator so that my application respects the device's sound settings. On the following code, if the vibrator is off(on my phone when I lower the volume, it is a ...
0
votes
1answer
209 views
Vibrator.vibrate() throws ArrayIndexOutOfBoundsException
I use the following snippet to vibrate the phone in a specific pattern, but it throws and ArrayIndexOutOfBoundsException.
vibrator.vibrate(new long[] { selectedDuration, CONSTANT_DELAY }, REPEAT);
...
0
votes
1answer
415 views
Vibrate during play a ringtone in netcf C#
i need to vibrate the phone while playing a ringtone.
This is my code:
public static bool PlaySound(string soundName)
{
try
{
WMPLib.WindowsMediaPlayer player = ...
0
votes
1answer
396 views
Vibrate settings in froyo
I read that in froyo if you change vibrate settings with setVibrateSettings() it doesn´t sync with SO vibrate settings. Then I found this workaround that people use with some of the functions in this ...
0
votes
2answers
4k views
Vibrate settings on Android 2.2
I'm making a vibrate toggling widget (in fact, its first version is already in the Market) but I'm having some problems with the vibrate settings of Android 2.2.
Up to Android 2.1 I have no problem, ...
0
votes
1answer
1k views
How long does AudioServicesPlaySystemSound(kSystemSoundID_Vibrate) last?
I don't have access an iPhone to test on right now. Can anyone tell me how long this call makes the phone vibrate? Thanks.
0
votes
1answer
337 views
How to vibrate iPhone while playing music
I am trying to vibrate the iPhone using AudioServicesPlaySystemSound(kSystemSoundID_Vibrate) while playing iPod music with the MediaPlayer framework, but I can't get the vibrate to work while the ...
0
votes
1answer
409 views
android ringing vibration activate/deactivate
I have a small problem... i tried searching high and low but couldnt find a way i can activate and deactivate the vibration at the time of incoming calls...
The option in the menu --> Settings --> ...
0
votes
1answer
625 views
How to vibrate BlackBerry though code?(Java)
Here is what I'm trying to do ..
Whenever event occurs, device should vibrate for couple of seconds.
I tried to use
Display.getDisplay(this).vibrate(2000);
It did not vibrate, while testing on ...