Lines Matching full:link
32 or in your own {@link android.webkit.WebView}.</p>
86 <p>If you've implemented a custom {@link android.webkit.WebView} in your application, all the
90 provide a {@link android.webkit.WebChromeClient}
91 that implements the {@link android.webkit.WebChromeClient#onConsoleMessage(String,int,String)
94 <p>Additionally, the {@link
96 Level 7 has been deprecated in favor of {@link
100 greater), you must implement {@link android.webkit.WebChromeClient} and override the appropriate
101 {@link
103 method. Then, apply the {@link android.webkit.WebChromeClient} to your {@link
104 android.webkit.WebView} with {@link android.webkit.WebView#setWebChromeClient(WebChromeClient)
107 <p>Using API Level 7, this is how your code for {@link
121 <p>With API Level 8 or greater, your code for {@link
128 Log.d("MyApplication", cm.{@link android.webkit.ConsoleMessage#message()} + " -- From line "
129 + cm.{@link android.webkit.ConsoleMessage#lineNumber()} + " of "
130 + cm.{@link android.webkit.ConsoleMessage#sourceId()} );
136 <p>The {@link android.webkit.ConsoleMessage} also includes a {@link
138 being delivered. You can query the message level with {@link
140 use the appropriate {@link android.util.Log} method or take other appropriate actions.</p>
142 <p>Whether you're using {@link
143 android.webkit.WebChromeClient#onConsoleMessage(String,int,String)} or {@link
145 in your web page, Android calls the appropriate {@link