Tagged Questions

101
votes
10answers
56k views

How do I detect when someone shakes an iPhone?

I want to react when somebody shakes the iPhone. I don't particularly care how they shake it, just that it was waved vigorously about for a split second. Does anyone know how to detect this?
51
votes
6answers
18k views

Android: I want to shake it!

I need to add a shake feature that will refresh my Anroid application. All I find of documentation involves implementing the SensorListener, but Eclipse tells me it's deprecated and suggest ...
12
votes
3answers
23k views

How to use Shake API in iPhone SDK 3.0?

Apple annonced Shake API in iPhone SDK 3.0. I can not find any information regarding this new feature. Who knows about how to use it? Any example, link will be good.
3
votes
1answer
813 views

Objective C: Detecting a shake

I'm using the shake api like this: - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event { if (event.subtype == UIEventSubtypeMotionShake) { [img stopAnimating]; ...
2
votes
2answers
446 views

Does anyone know of any sample code for simple shake detector?

I'm looking for an android code example on how I would be able to make my phone listen for a "shake" and then have it trigger webview.reload(); to simply reload the webview on the activity. Anyone ...
2
votes
1answer
2k views

How can I detect a shake gesture in PhoneGap 0.8?

I'm using PhoneGap 0.8 and I'd like to detect a basic shake gesture. I've found two relevant snippets: http://groups.google.com/group/phonegap/browse_thread/thread/25178468b8eb9e9f ...
1
vote
1answer
171 views

How to detect that the phone (WP7) has stopped shaking

I can get the phone to react to a shake, but what is the best way to tell that it has stopped shaking?
1
vote
1answer
677 views

Objective C: Shake problems

I'm detecting a shake that will start the animation, and when it ends, it stops animating. Sometimes it works, but sometimes it doesn't realize the shake has ended so it'll never call the motionEnded ...
1
vote
1answer
1k views

How to detect shake on the iPhone using Cocos2D?

I know how to do shake for the iPhone has been asked a million times on here, but I can't seem to find anything useful regarding the accelerometer with Cocos2D. Everything i have found involves using ...
0
votes
0answers
34 views

onSensorChanged minimum value

I want my android application to generate a random number if the sensor changed a minimum value of 3, so for example, if it goes from 9 to 6 in less then a second (on shake). I already have the ...
0
votes
1answer
143 views

What logic is used behind this accelerometer sensor listener

This is the code i am using to capture the shake of the phone: public void onSensorChanged(SensorEvent event) { Sensor mySensor = event.sensor; if (mySensor.getType() == ...
0
votes
1answer
107 views

How to stop accelerometer sensor

I am using exactly this code in this example http://android.themind-lab.com/post/2010/05/14/Dont-shake-my-phone!-How-to-detect-shake-motion-on-Android-phone.aspx What should i include in MyMethod() ...
0
votes
0answers
314 views

iOS, count number of shakes

i want to fire an event every time the device orientation (calculated by x and y axes) crosses a special value. So every time the device moves down and crosses 90° or it moves up and crosses 90° i ...
0
votes
1answer
172 views

shaking iphone in 4.0+

How do I use shake-events in iOS 4.0+? I tested this solution but isn't working in 4.1. Is it possible that something changed or am I doing someting wrong? motionBegan: Not Working
0
votes
2answers
159 views

Couldn't detect device's shakes

I'm trying to detect when the device(iPhone/iPod Touch) shakes, what I have already done (in my viewController.m) is : - (BOOL) canBecomeFirstResponder{ return YES; } . - (void) ...
0
votes
1answer
517 views

SensorEventListener no longer detecting in Android 2.3.3

I recently updated my nexus one to Android 2.3.3 and now I am unable to detect a shake with my "SensorEventListener" registered in a SensorManager. My code is close to this example to detect a shake ...
0
votes
1answer
634 views

Handling Shake Events in Android (1.5+?)

Pretty new to Android development here... Is there an example out there of a working app with source that does something when you shake the phone? Is this doable in a background app? Done quite a bit ...
0
votes
2answers
150 views

How to make objects flying around in a view

How is it possible to let some objects fly around and bumb at the end of the view and collide on each other. The second step would add acceleration of the objects by shaking. I haven't found a ...