Okay so I found out the problem, it's in the main.xml (found the
solution here:
http://groups.google.com/group/android-developers/browse_thread/thread/e97e50c9e384106c/ed25789e63520880?show_docid=ed25789e63520880)

-----------------------------------------------------------------------
main.xml (old)
-----------------------------------------------------------------------
[...]
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">
[...]
-----------------------------------------------------------------------




-----------------------------------------------------------------------
main.xml (new)
-----------------------------------------------------------------------
[...]
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
[...]
-----------------------------------------------------------------------
On 8 juin, 22:05, André Charles Legendre <[email protected]>
wrote:
> Hi Benjamin
>
> I have a similar application and it works good with 1.5
>
> I ask myself why you name activity .HelloWebView  in manifest
> And you look for R.id.webview
> Are you sure about the name ?
>
> Andre
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" 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-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to