This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |