Android examples for User Interface:WebView
is WebView Attach
//package com.java2s; import android.webkit.WebView; public class Main { public static boolean isWebViewAttach(WebView webView) { if (webView != null) { if (webView.getScrollY() > 0) { return false; }/*from w w w . ja va 2 s . c om*/ } return true; } }