Hi,

I already tried a Dialog, but the events of the WebView are frozen,
and also the size does not take all the screen.

So, i'm trying to do it with an Activity:

   class WebViewer extends Activity
   {
      String url;
      public void onCreate(Bundle savedInstanceState)
      {
         super.onCreate(savedInstanceState);
         WebView webview = new WebView(this);
         setContentView(webview);
         webview.loadUrl(url);
      }

      public WebViewer(String url)
      {
         this.url = url;
      }
   }

... but i'm not being able to run it. I tried this:

         WebViewer w = new WebViewer(args);
         w.startActivity(new Intent());

It doesn't work. I think that the problem is that i'm not selecting
the right intent.

Any help is appreciated.

thx

   guich

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to