2
我想在android webview中發生滾動事件時執行一些操作。有沒有辦法做到這一點收聽android webview中的滾動事件
我想這
OnTouchListener onTouchListener = new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
int action = event.getAction();
if (action == MotionEvent.ACTION_UP) {
//do something
}
return false;
}
};
,但它不工作... 有沒有像滾動監聽任何在android系統的網頁視圖
你檢查了現有的問答嗎?檢查:[如何在Android中爲WebView製作滾動監聽器](http://stackoverflow.com/questions/14752523/how-to-make-a-scroll-listener-for-webview-in-android) –
你是否使用jquerymobile? –
雅我檢查了它。但它不工作@Paresh – jubin