Android, Possible to add a native header for webview? -


i'd add native header webview.

when scroll webview, header scrolls.

google doesn't know answer this..

you may try define layout webview , header view. webview class extended override method onscrollchanged. there may define logic scroll header view based on internal webview content scroll.

public class mywebview extends webview{     @override     protected void onscrollchanged (int l, int t, int oldl, int oldt){          //todo scroll header view based on current t scroll vertical origin     } } 

Comments