Hallo Falko,

though your post lacks the occuring error, i try to help anyway.

I had similar problems on my first android application with a Google
Map. I think you lack 2 things:

1. You need to import the google maps libraries in the manifest.xml,
and
2. To add permissions for accessing the internet.

Therefore add the following lines to your AndroidManifest.xml


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
    .... >
    <uses-permission android:name="android.permission.INTERNET" />
    <application android:icon="@drawable/icon" android:label="@string/
app_name">
        <uses-library android:name="com.google.android.maps" />
        ....
    </application>
</manifest>

I hope this solves your problem.

--~--~---------~--~----~------------~-------~--~----~
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]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to