Available Methods
- loadUrl ( )
- setWebViewClient ( )
- getSettings ( )
- addJavascriptInterface ( )
- loadDataWithBaseURL ( )
- setWebChromeClient ( )
- setWebContentsDebuggingEnabled ( )
- setVisibility ( )
- loadData ( )
- setLayoutParams ( )
- clearHistory ( )
- setBackgroundColor ( )
- setHorizontalScrollBarEnabled ( )
- HitTestResult ( )
- setVerticalScrollBarEnabled ( )
- canGoBack ( )
- stopLoading ( )
- getScrollY ( )
- clearCache ( )
- restoreState ( )
- requestFocus ( )
- getScale ( )
- goBack ( )
- setLayerType ( )
- getContext ( )
- post ( )
- isShown ( )
- setInitialScale ( )
- setFocusable ( )
- draw ( )
- createPrintDocumentAdapter ( )
- getUrl ( )
- layout ( )
- enableSlowWholeDocumentDraw ( )
- setFocusableInTouchMode ( )
- removeJavascriptInterface ( )
- postUrl ( )
- destroyDrawingCache ( )
- setScrollbarFadingEnabled ( )
- setPictureListener ( )
- destroy ( )
- capturePicture ( )
- postDelayed ( )
- getTitle ( )
- setScrollBarStyle ( )
- setId ( )
- setWillNotCacheDrawing ( )
- setOnLongClickListener ( )
- clearFocus ( )
- getCertificate ( )
- getMeasuredHeight ( )
- getMeasuredWidth ( )
- getContentHeight ( )
- postInvalidate ( )
- evaluateJavascript ( )
- setOverScrollMode ( )
- getLocationOnScreen ( )
- setSaveEnabled ( )
- getParent ( )
- getLayoutParams ( )
- FindListener ( )
- getHeight ( )
Related Classes
- java.io.File
- android.os.Bundle
- android.content.Context
- android.view.View
- android.util.Log
- android.widget.TextView
- android.content.Intent
- android.view.ViewGroup
- android.app.Activity
- android.view.LayoutInflater
- android.os.Build
- android.widget.Toast
- android.widget.ImageView
- android.graphics.Color
- android.os.Handler
- android.net.Uri
- android.widget.Button
- android.graphics.Bitmap
- android.text.TextUtils
- android.view.MotionEvent
- android.widget.LinearLayout
- android.support.annotation.Nullable
- android.widget.EditText
- android.annotation.TargetApi
- android.annotation.SuppressLint
Java Code Examples for android.webkit.WebView#FindListener
The following examples show how to use
android.webkit.WebView#FindListener .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ShadowWebView.java From materialistic with Apache License 2.0 | 4 votes |
@Implementation public void setFindListener(WebView.FindListener listener) { findListener = listener; }
Example 2
Source File: DSL.java From anvil with MIT License | 4 votes |
public static Void findListener(WebView.FindListener arg) { return BaseDSL.attr("findListener", arg); }