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 have any insight on this topic?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can try the Shaker class from this project.

link|improve this answer
aohhhha thank you Mark! – Jorgesys Jul 16 '10 at 0:53
That was perfect! Thanks I got it! – brybam Jul 16 '10 at 1:20
Careful how to use is since the listener may not stop when the activity is out of focus (in case you are firing any intent with that shake) – weakwire Jul 16 '10 at 3:33
@weakwire: correct -- best usage is to set up the Shaker in onResume() and close it in onPause(). My sample is a little on the simple side. – CommonsWare Jul 16 '10 at 10:45
Anyone that used this Shaker class know what to modify so it has to be shaken a tad rougher? right now i barely tilt my nexus and it triggers it :/ – brybam Jul 16 '10 at 23:43
show 1 more comment
feedback

I think its just as simple as read the accel, watch the x accel, look for a pos peak about 1G, (this sample is the first that is less than the previous couple of samples), increment a counter. After three 'shakes', you're golden. You have 2 params to adjust... threshold and reps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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