Skip to content

Instantly share code, notes, and snippets.

View alecplumb's full-sized avatar

Alec B. Plumb alecplumb

  • Fresno, CA, USA
View GitHub Profile
@alecplumb
alecplumb / ShakeDetector.java
Created October 20, 2011 21:12
Roboguice Android shake detector
import roboguice.activity.event.OnPauseEvent;
import roboguice.activity.event.OnResumeEvent;
import roboguice.event.EventManager;
import roboguice.event.Observes;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import com.google.inject.Inject;
@alecplumb
alecplumb / DeepScrollView.java
Created August 19, 2011 23:06
Scroll an android ScrollView to a non-direct child
public class DeepScrollView extends ScrollView {
public ShrinkWatchScrollView(Context context, AttributeSet attrs,
int defStyle) {
super(context, attrs, defStyle);
}
public ShrinkWatchScrollView(Context context, AttributeSet attrs) {
this(context, attrs, 0);