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

link|improve this question

25% accept rate
feedback

1 Answer

This example worked for me.

At the very bottom of the page you'll see:

                if (!_shaking && CheckForShake(_lastReading, reading, ShakeThreshold) && _shakeCount >= 1)
                {
                    //We are shaking
                    _shaking = true;
                    _shakeCount = 0;
                    OnShakeDetected();
                }
                else if (CheckForShake(_lastReading, reading, ShakeThreshold))
                {
                    _shakeCount++;
                }
                else if (!CheckForShake(_lastReading, reading, 0.2))
                {
                    _shakeCount = 0;
                    _shaking = false;
                }
link|improve this answer
The sample is generating an "Invalid cross-thread access" in the ReadingChanged method. There is a catch which has a comment "ignore errors" but this error stops any code from executing. – user913240 Sep 9 '11 at 7:29
feedback

Your Answer

 
or
required, but never shown

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