如何隐藏页脚,而在Android的向上滚动网页流量?(How to hide footer whil

2019-09-28 01:21发布

我有与底部即页脚三个按键布局线性的WebView。 我希望隐藏页脚同时向上滚动网页视图,并显示上向下滚动页脚。

请帮我!!!

Answer 1:

试试这个,我还从来没有尝试过,所以让我知道它的工作与否。

 scroll.setOnTouchListener(new OnTouchListener() {

            public boolean onTouch(View v, MotionEvent event) {

                if (event.getAction() == MotionEvent.ACTION_UP) {

                   //show footer
                }
else  if (event.getAction() == MotionEvent.ACTION_DOWN) {

                   //hide footer
                }    
                return false;
            }
    });


文章来源: How to hide footer while scrolling up webview in android?