Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/mapview"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:clickable="true"
 android:apiKey="YOUR API KEY"
 />

This is the XML code for Google map view.is there anything need to add in AndroidManiFest.xml?

I can not understand.any one can help ?

share|improve this question
you have to generate it using keytool, which would be found under JDK installation on your drive – Habib Apr 4 '12 at 11:11
@serzila10 refer this link for detail about API key code.google.com/android/add-ons/google-apis/maps-overview.html.. and what is your exact question?? – Never Quit Apr 4 '12 at 11:14
do u have a key – Rakshi Apr 4 '12 at 11:14

4 Answers

up vote 2 down vote accepted

That is the exact path--

    keytool -list -keystore "C:\Users\XYZ\.android\debug.keystore" 

Total path for cmd prompt to get the MD5 fingureprint for the GoogleMap API Key*******

    D:\eclipse\jre\bin>keytool -list -keystore "C:\Users\XYZ\.android\debug.keystore"

MD5 fingurePrint will look like this--

   3E:F4:D6:E6:93:4D:BB:B8:62:3A:D6:0F:E0:FC:4C:65

When u get the fingurePrint number afterthat to get the API Key use this link---

   http://code.google.com/android/add-ons/google-apis/maps-api-signup.html

Then u will get API key of your system and can get the Map easily....

share|improve this answer
Please see the link  
There whole procedure about how generate map api key and how to use in your code

http://code.google.com/android/add-ons/google-apis/mapkey.html

Thanks
share|improve this answer
2  
still you are getting problem then please comment i will give full solution – Zumbarlal Saindane Apr 4 '12 at 11:15
i fix the problem.thanx. – Android Girl Apr 4 '12 at 11:18
2  
no thanks.. i have explained her well – Rakshi Apr 4 '12 at 11:19

http://www.androidhive.info/2012/01/android-working-with-google-maps/

Check this link provides the procedure to generate map key and how to use it in your code.

share|improve this answer
<uses-library android:name="com.google.android.maps" /> i need to add this in android.menifest – Android Girl Apr 4 '12 at 11:21
yes you need to add that in your manifest inside the application tag – Rakshi Apr 4 '12 at 11:22

you should Read this Step for Making google Map working in your application.

Please Visit this Link

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.