Chromium Code Reviews| Index: chrome/test/chromedriver/test/webview_shell/java/src/org/chromium/chromedriver_webview_shell/Main.java |
| diff --git a/chrome/test/chromedriver/test/webview_shell/java/src/org/chromium/chromedriver_webview_shell/Main.java b/chrome/test/chromedriver/test/webview_shell/java/src/org/chromium/chromedriver_webview_shell/Main.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9fc1bb5197ba9d303b4eec90f17a399e905f2269 |
| --- /dev/null |
| +++ b/chrome/test/chromedriver/test/webview_shell/java/src/org/chromium/chromedriver_webview_shell/Main.java |
| @@ -0,0 +1,61 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +package org.chromium.chromedriver_webview_shell; |
| + |
| +import android.app.Activity; |
| +import android.content.Intent; |
| +import android.content.res.Configuration; |
| +import android.os.Build; |
| +import android.os.Bundle; |
| +import android.view.Window; |
| +import android.webkit.WebChromeClient; |
| +import android.webkit.WebSettings; |
| +import android.webkit.WebView; |
| +import android.webkit.WebViewClient; |
| +import android.widget.Toast; |
| + |
| +public class Main extends Activity { |
| + private WebView mWebView; |
| + |
| + @Override |
| + protected void onCreate(Bundle savedInstanceState) { |
| + super.onCreate(savedInstanceState); |
| + |
| + getWindow().requestFeature(Window.FEATURE_PROGRESS); |
| + setContentView(R.layout.main_layout); |
| + |
| + WebView.setWebContentsDebuggingEnabled(true); |
| + mWebView = (WebView) findViewById(R.id.webview); |
| + WebSettings webSettings = mWebView.getSettings(); |
| + webSettings.setJavaScriptEnabled(true); |
| + |
| + final Activity activity = this; |
| + mWebView.setWebChromeClient(new WebChromeClient() { |
| + public void onProgressChanged(WebView view, int progress) { |
| + activity.setProgress(progress * 100); |
|
craigdh
2013/11/07 23:26:59
indent
frankf
2013/11/08 21:20:55
Done.
|
| + } |
| + }); |
| + mWebView.setWebViewClient(new WebViewClient() { |
| + public void onReceivedError(WebView view, int errorCode, String description, |
| + String failingUrl) { |
| + Toast.makeText(activity, "Error: " + description, Toast.LENGTH_SHORT).show(); |
| + } |
| + }); |
| + |
| + loadUrl(getIntent()); |
| + } |
| + |
| + @Override |
| + protected void onNewIntent(Intent intent) { |
| + super.onNewIntent(intent); |
| + loadUrl(intent); |
| + } |
| + |
| + private void loadUrl(Intent intent) { |
| + if (intent != null && intent.getDataString() != null) { |
| + mWebView.loadUrl(intent.getDataString()); |
| + } |
| + } |
| +} |