package com.mypack;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class myact extends Activity {
/** Called when the activity is first created. */
WebView mWebView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl("http://www.google.com");
// mWebView.loadData("Hello, world!","text/html", "UTF-8");
// mWebView.setWebViewClient(new HelloWebViewClient());
}
}
0 comments:
Post a Comment