this is my class, where is the problem?
the error message is "the application [...] has stopped unexpectedly".
HELP

public class asd extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);

        try{
                WebView wv = new WebView(this);
            wv.loadUrl("/sdcard/index.html");
            setContentView(wv);
        }
        catch(Exception e){
                TextView t = new TextView(this);
                t.setText(e.getMessage());
                this.setContentView(t);
        }
    }
 }

P.S. The index.html had been correctly inserted into sdcard.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to