Questions tagged [vibration]

Vibration is a kind of user interaction or attention feedback provided by some devices.

Vibration is a kind of user interaction or attention feedback provided by some devices.

Starting point.

437 questions
-1
votes
1 answer

How to avoid timer stacking

I'm sorry if his question has already been asked in some way. I'm currently re-writing a vibration driver in a Linux kernel. The reason why I changed it was due to overly strong vibrations caused by gaining a specific velocity of the vibration…
CTXz
  • 716
  • 5
  • 5
-1
votes
2 answers

AudioServicesPlaySystemSound vibration works but not sound

AudioServicesPlaySystemSound doesn't do anything but AudioServicesPlayAlertSound makes the iPhone vibrate. AudioServicesCreateSystemSoundID returns success. I'm developing on iPhone3G running iOS4. Any ideas? Peter ===== Here's how I create the…
Peter
  • 533
  • 1
  • 6
  • 17
-1
votes
1 answer

ios 8 UILocalNotificaion vibrations on silent mode

I'm trying to stop the iphone from vibrating in the silent mode. so,how to stop UILocalNotificaion vibrations on silent mode programmatically. What I want is to vibrate normally when ring mode is on and not to in the silent case. I know that can be…
-1
votes
1 answer

new to this - vibrate on tap (and open link)

Im working on a simple project and i am new to this(as the title says). So what i want to happend is: When you tap a link(ommig) i want the unit to vibrate a bit. I tried to use Hammer.js lib but failed, I dont really mind using the html5 way, so…
-1
votes
1 answer

How to enable vibration when screen timeout occurs?

I want the device to start vibrating for some amount of time when screen timeout option enables(when the light dims, before the screen shuts off).I know how to set up both functions individually, but I can't seem to manage to get them in the right…
-1
votes
1 answer

App that should vibrate the phone crashes on Eclipse and cannot instantiate activity

I don't know why but I am getting this ![Log Cat][1] when trying to make an app that vibrates the phone after pressing a button, following the class Udemy Vibrate App. I have aready tried to clean, close the program and check if Android Private…
Leo
  • 67
  • 1
  • 10
-1
votes
1 answer

vibrate image in imageview

I need to vibrete image in imageview For that i used
Android
  • 8,995
  • 9
  • 67
  • 108
-1
votes
1 answer

How I can get an Android phone to vibrate while shaking it?

I am just curious if my app would work out this way to make it vibrate when the phone is shook: if(event.values[0] > 1.0) { vibrator.vibrate(500); } else { if(event.values[1] > 1.0) vibrator.vibrate(500); } What I am doing is…
Rido
  • 27
  • 6
-1
votes
1 answer

how to turn on of turn off the ringing tone and vibrate tone in iphone?

the APP require me to realize a setting function,which can turn on/off the ringing tone and the same to vibrate tone, Is someone konw the answer?Thanks!
whitekevin
  • 311
  • 3
  • 15
-1
votes
1 answer

Vibe force close. Vibrate

I have a line of code that calls the Vibrator service. if (vibe){ Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); v.vibrate(2000); run(); …
Chad Bingham
  • 32,650
  • 19
  • 86
  • 115
-2
votes
1 answer

How can you use a button to send a vibrational pattern to another iOS device in swift?

The user enters another user's phone number. If both people are inside the app simultaneously, each user can tap a big button which makes the other person's device vibrate simultaneously. How can I make the button make the other person's iOS device…
-2
votes
2 answers

My timer stops after one round

I have this code that is suppossed to make my phone vibrate constantly. but it stops after 1 vibration. Is there something wrong with my timer? var timer: Timer? @IBAction func button1(_ sender: UIButton) { …
-2
votes
1 answer

Phone vibrate with screen locked

I'm making a timer inside an app (in Studio), and when the timer reaches 0, it vibrates. I would like to make it so that the phone still vibrates when the screen is locked. Any suggestions? Here's my main activity: EditText timerWrite; …
-2
votes
1 answer

How to use the vibration service in a shared project Xamarin.Forms (Portable) in Visual Studio?

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xamarin.Forms; namespace App1 { public partial class Page1 : ContentPage { public Page1() { …
-2
votes
1 answer

how to manage mobile vibration?

I have create method to vibrate the mobile,code is running well,but I can't vibration like a "play then stop then play". How can manage this type vibration? code //@JavascriptInterface public void Viber(String value ) { // Get…
egydeveloper
  • 585
  • 5
  • 7
  • 27
1 2 3
29
30