我已經實現了ListView的下拉刷新功能,但是在初始進入這個頁面的時候,需要模擬下拉這個動作,讓ListView自動開始刷新,請問這個怎麼實現?謝謝
在本應用中,模擬一次點擊觸屏的操作是可以的。
如:
Instrumentation inst = new Instrumentation();
inst.sendPointerSync(MotionEvent.obtain(SystemClock.uptimeMillis(),SystemClock.uptimeMillis(),
MotionEvent.ACTION_DOWN, 500, 200, 0));
inst.sendPointerSync(MotionEvent.obtain(SystemClock.uptimeMillis(),SystemClock.uptimeMillis(),
MotionEvent.ACTION_UP, 500, 200, 0));