Advertisement
Guest User

logcat

a guest
Jan 23rd, 2011
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. [mainActivity.java]
  2. package com.app.jerdog.crcc;
  3.  
  4. import android.app.Activity;
  5. import android.os.Bundle;
  6. import android.webkit.WebView;
  7.  
  8. public class mainActivity extends Activity {
  9. WebView webview;
  10.  
  11. /** Called when the activity is first created. */
  12. @Override
  13. public void onCreate(Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.main);
  16. webview = (WebView) findViewById(R.id.webview);
  17. webview.getSettings().setJavaScriptEnabled(true);
  18. webview.loadUrl("http://www.google.com");
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement