Created
January 9, 2013 18:37
-
-
Save JBirdVegas/4495628 to your computer and use it in GitHub Desktop.
Sneaky PreferenceFragment that is aware
of Overscroll
This file contains 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
package com.example.sneakylist; | |
import android.preference.PreferenceFragment; | |
import android.widget.AbsListView; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: jbird | |
* Date: 1/9/13 | |
* Time: 1:16 PM | |
*/ | |
public class TestSeakyListFragment extends PreferenceFragment implements AbsListView.OnScrollListener { | |
@Override | |
public void onScrollStateChanged(AbsListView absListView, int i) { | |
} | |
@Override | |
public void onScroll(AbsListView absListView, int i, int i2, int i3) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment