HomeSort by relevance Sort by last modified time
    Searched full:webview (Results 1 - 25 of 876) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/ExactCalculator/src/com/android/calculator2/
Licenses.java 6 import android.webkit.WebView;
16 final WebView webView = new WebView(this);
17 webView.loadUrl(LICENSE_URL);
19 setContentView(webView);
  /packages/screensavers/Basic/res/layout/
main.xml 2 <WebView
4 android:id="@+id/webview"
8 </WebView>
  /packages/screensavers/WebView/res/layout/
main.xml 2 <WebView
4 android:id="@+id/webview"
8 </WebView>
  /packages/apps/Browser/src/com/android/browser/preferences/
WebViewPreview.java 27 import android.webkit.WebView;
34 protected WebView mWebView;
58 protected void setupWebView(WebView view) {}
63 WebView webView = (WebView) root.findViewById(R.id.webview);
64 // Tell WebView to really, truly ignore all touch events. No, seriously,
66 webView.setFocusable(false);
67 webView.setFocusableInTouchMode(false)
    [all...]
  /frameworks/base/docs/html/guide/webapps/
webview.jd 1 page.title=Building Web Apps in WebView
8 <li>Use {@link android.webkit.WebView} to display web pages in your Android application
15 <li><a href="#AddingWebView">Adding a WebView to Your Application</a></li>
16 <li><a href="#UsingJavaScript">Using JavaScript in WebView</a>
31 <li>{@link android.webkit.WebView}</li>
40 you can do it using {@link android.webkit.WebView}. The {@link android.webkit.WebView} class is an
43 browser, such as navigation controls or an address bar. All that {@link android.webkit.WebView}
46 <p>A common scenario in which using {@link android.webkit.WebView} is helpful is when you want to
49 that contains a {@link android.webkit.WebView}, then use that to display your document that'
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebViewClient.java 25 import android.webkit.WebView;
45 public boolean shouldOverrideUrlLoading(WebView view, String url) {
51 public void onPageStarted(WebView view, String url, Bitmap favicon) {
57 public void onPageFinished(WebView view, String url) {
63 public void onLoadResource(WebView view, String url) {
70 public void onTooManyRedirects(WebView view, Message cancelMsg,
77 public void onReceivedError(WebView view, int errorCode,
84 public void onFormResubmission(WebView view, Message dontResend,
91 public void doUpdateVisitedHistory(WebView view, String url,
98 public void onReceivedSslError(WebView view, SslErrorHandler handler
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
WebViewTest.java 6 import android.webkit.WebView;
24 private WebView webView;
29 webView = new WebView(null);
30 shadowWebView = Robolectric.shadowOf(webView);
35 webView.loadUrl("http://example.com");
36 assertThat(shadowOf(webView).getLastLoadedUrl(), equalTo("http://example.com"));
41 webView.loadData("<html><body><h1>Hi</h1></body></html>", "text/html", "utf-8");
42 ShadowWebView.LoadData lastLoadData = shadowOf(webView).getLastLoadData()
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewFactoryProvider.java 25 * This is the main entry-point into the WebView back end implementations, which the WebView
27 * implementation of this interface, and make it available to the WebView via mechanism TBD.
33 * This Interface provides glue for implementing the backend of WebView static methods which
39 * {@link android.webkit.WebView#findAddress(String)}
56 * {@link android.webkit.WebView#setWebContentsDebuggingEnabled(boolean) }
62 * {@link android.webkit.WebView#clearClientCertPreferences(Runnable) }
68 * {@link android.webkit.WebView#setSlowWholeDocumentDrawEnabled(boolean) }
83 * @param webView the WebView instance bound to this implementation instance. Note it will no
    [all...]
WebViewFragment.java 24 import android.webkit.WebView;
27 * A fragment that displays a WebView.
29 * The WebView is automically paused or resumed when the Fragment is paused or resumed.
32 private WebView mWebView;
39 * Called to instantiate the view. Creates and returns the WebView.
47 mWebView = new WebView(getActivity());
53 * Called when the fragment is visible to the user and actively running. Resumes the WebView.
62 * Called when the fragment is no longer resumed. Pauses the WebView.
71 * Called when the WebView has been detached from the fragment.
72 * The WebView is no longer available after this time
    [all...]
HttpAuthHandler.java 24 * created by the WebView and passed to
26 * call either {@link #proceed} or {@link #cancel} to set the WebView's
45 * @see WebView#getHttpAuthUsernamePassword
52 * Instructs the WebView to cancel the authentication request.
58 * Instructs the WebView to proceed with the authentication with the given
60 * the WebView's store using {@link WebView#getHttpAuthUsernamePassword}.
WebViewDatabase.java 22 * This class allows developers to determine whether any WebView used in the
46 * @see WebView#savePassword
48 * @deprecated Saving passwords in WebView will not be supported in future versions.
57 * @see WebView#savePassword
59 * @deprecated Saving passwords in WebView will not be supported in future versions.
68 * @see WebView#getHttpAuthUsernamePassword
69 * @see WebView#setHttpAuthUsernamePassword
77 * @see WebView#getHttpAuthUsernamePassword
78 * @see WebView#setHttpAuthUsernamePassword
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebView_WebViewTransportTest.java 22 import android.webkit.WebView;
23 import android.webkit.WebView.WebViewTransport;
38 WebView webView = getActivity().getWebView();
39 WebViewTransport transport = webView.new WebViewTransport();
43 transport.setWebView(webView);
44 assertSame(webView, transport.getWebView());
CookieSyncManagerCtsActivity.java 23 import android.webkit.WebView;
26 private WebView mWebView;
35 mWebView = new WebView(this);
48 // May throw on a device with no webview, OK to ignore at this point.
58 // May throw on a device with no webview, OK to ignore at this point.
62 public WebView getWebView(){
WebViewStartupCtsActivity.java 22 import android.webkit.WebView;
25 private WebView mWebView;
32 public WebView createAndAttachWebView() {
33 mWebView = new WebView(this);
38 public WebView getWebView() {
  /external/chromium-webview/
README 1 Building the Chromium-based WebView in AOSP is no longer supported. WebView can
4 General instructions for building WebView from Chromium:
5 https://www.chromium.org/developers/how-tos/build-instructions-android-webview
18 Due to WebView API changes in the M release, the Java code in the Chromium 2403
24 For questions about building WebView, please see
25 https://groups.google.com/a/chromium.org/forum/#!forum/android-webview-dev
  /development/samples/browseable/PermissionRequest/
_index.jd 9 WebView.
  /development/samples/training/network-usage/res/layout/
main.xml 7 <WebView xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/webview"
  /external/clang/test/SemaObjC/
conditional-expr-8.m 12 @interface WebView : NSView
21 WebView *m_webView;
arc-invalid.m 22 @interface WebView // expected-note {{previous definition is here}}
26 @interface WebView // expected-error {{duplicate interface definition for class 'WebView'}}
31 - (WebView *)webView;
42 [[browserView webView] mainFrame];
  /frameworks/base/samples/training/network-usage/res/layout/
main.xml 7 <WebView xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/webview"
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerTestActivity.java 29 import android.webkit.WebView;
46 private WebView webView;
74 webView = new WebView(this);
75 webView.getSettings().setJavaScriptEnabled(true);
76 webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(false);
77 webView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.NORMAL);
81 webView.setWebViewClient(webViewClient);
82 webView.setWebChromeClient(chromeClient)
    [all...]
  /frameworks/base/docs/html/training/printing/
html-docs.jd 27 <p>In Android 4.4 (API level 19), the {@link android.webkit.WebView} class has been updated to
32 use {@link android.webkit.WebView} to print it.</p>
37 <p>Printing an HTML document with {@link android.webkit.WebView} involves loading an HTML
39 string and load it into a {@link android.webkit.WebView} for printing.</p>
42 is not using a {@link android.webkit.WebView}, you can create an instance of the class
48 <li>Load the HTML resource into the {@link android.webkit.WebView} object.</li>
55 private WebView mWebView;
58 // Create a WebView object specifically for printing
59 WebView webView = new WebView(getActivity())
    [all...]
  /packages/apps/Browser/src/com/android/browser/
WebViewTimersControl.java 20 import android.webkit.WebView;
23 * Centralised point for controlling WebView timers pausing and resuming.
53 private void resumeTimers(WebView wv) {
54 if (LOGD_ENABLED) Log.d(LOGTAG, "Resuming webview timers, view=" + wv);
60 private void maybePauseTimers(WebView wv) {
62 if (LOGD_ENABLED) Log.d(LOGTAG, "Pausing webview timers, view=" + wv);
67 public void onBrowserActivityResume(WebView wv) {
73 public void onBrowserActivityPause(WebView wv) {
79 public void onPrerenderStart(WebView wv) {
85 public void onPrerenderDone(WebView wv)
    [all...]
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
ArticleFragment.java 24 import android.webkit.WebView;
30 // The webview where we display the article (our only view)
31 WebView mWebView;
42 * Sets up the UI. It consists if a single WebView.
46 mWebView = new WebView(getActivity());
62 * Loads article data into the webview.
64 * This method is called internally to update the webview's contents to the appropriate
  /packages/screensavers/WebView/src/com/android/dreams/web/
Screensaver.java 42 import android.webkit.WebView;
51 public boolean shouldOverrideUrlLoading(WebView view, String url) {
76 WebView webview = (WebView) findViewById(R.id.webview); local
77 webview.setWebViewClient(new LinkLauncher());
79 WebSettings webSettings = webview.getSettings();
82 webview.loadUrl(url);

Completed in 523 milliseconds

1 2 3 4 5 6 7 8 91011>>