Android ListView 스크롤 강제 정지

원본 주소:http://stackoverflow.com/questions/6369491/stop-listview-scroll-animation
첫 번 째 방법 은 반 사 를 이용 하여 완성 하기 위해 코드 는 다음 과 같다.
private static Field mFlingEndField = null;  
    private static Method mFlingEndMethod = null;  
    static {  
        try {  
            mFlingEndField = AbsListView.class.getDeclaredField("mFlingRunnable");  
            mFlingEndField.setAccessible(true);  
            mFlingEndMethod = mFlingEndField.getType().getDeclaredMethod("endFling");  
            mFlingEndMethod.setAccessible(true);  
        } catch (Exception e) {  
            mFlingEndMethod = null;  
        }  
    }  
    public static void stop(ListView list) {  
        if (mFlingEndMethod != null) {  
            try {  
                mFlingEndMethod.invoke(mFlingEndField.get(list));  
            } catch (Exception e) {  
            }  
        }  
    }

두 번 째 방법 은:
listView.dispatchTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_CANCEL, 0, 0, 0));  

만약 listView 가 자신 이 다시 쓴 ListView 이 고 스크롤 이 멈 춘 후에 추가 처 리 를 해 야 한다 면 onTouchEvent (MotionEvent ev) 에서 다음 코드 로 할 수 있 습 니 다.
switch (ev.getAction()) {  
            case MotionEvent.ACTION_CANCEL:  
                //setSelection(Integer.MAX_VALUE / 2);  
                break;  
  
            default:  
                break;  
        } 
 

좋은 웹페이지 즐겨찾기