0
我使用的WebView在android系統在網頁流量,覆蓋TouchListener
,需要認識到它是滾動或不
時滾動網頁流量,隱藏我的選項選項卡,並停止滾動,設置明顯的WebView。
www.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
if(event.getAction() == MotionEvent.ACTION_UP)
{
Log.v("motion", "Up");
option_tab_layout.setVisibility(View.VISIBLE);
}
if(event.getAction()==MotionEvent.ACTION_MOVE){
Log.v("motion", "move");
option_tab_layout.setVisibility(View.INVISIBLE);
}
return false;
}
});
時返回FALSE,ACTION_UP事件沒有打電話, 並使用返回true,網頁流量不能滾動頁面
我該如何處理呢?