Hi, Thanks again! It's coming together...

You were right! And to be honest I did not even no that the manifest
existed. It' s a beginner list, right : )
Well, I did some research and set the permissions as below. And for
one time I got the page coming up. Unfortunately never again... Have
no clue why that is? No error log in the console. Would you mind
having a second look over the manifest and check for mistakes?

Thanks a lot! Best, Hannes

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="com.example.android.browserdemo01"
      android:versionCode="1"
      android:versionName="1.0.0">
    <uses-permission android:name="android.permission.INTERNET"/>

     <application android:icon="@drawable/icon"
                          android:label="@string/app_name">
        <activity android:name=".browserdemo01"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category
android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>



On Feb 11, 3:02 pm, Mark Murphy <[email protected]> wrote:
> h...@nnes wrote:
> > I go through the fullscreen tutorial. It seems to require some more
> > profound understanding of what is going on, but that's cool! Thanks!
> > Also the androidguys seem to be down by now, hope they come back.
>
> Hmmmm...they're up now.
>
> > The adding of "wv.getSettings().setJavaScriptEnabled(true); " did not
> > have the results I wished it would. The page is still not shown at
> > all, but the emulator displays the default "Web page not available
> > message". I in fact do not get it, the browser itself is disolaying
> > the same page as it should, pointing me to that it has to be something
> > in the code... Can you confirm that the code is okay?
>
> Nothing else seems odd. Do you have the INTERNET permission in your
> manifest?
>
> --
> Mark Murphy (a Commons Guy)http://commonsware.com
>
> Android Training on the Ranch! -- Mar 16-20, 
> 2009http://www.bignerdranch.com/schedule.shtml
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to