Re: [android-developers] Re: Google Map Error

2011-02-24 Thread Nesim TUNÇ
Hi, Sorry for the delayed reply :( Today I tried to solve it ... I changed the api Google Inc 7. I removed all android jar then I add the Google Inc 7 api. Then worked for me ... Thanks to all you ... On Tue, Feb 22, 2011 at 10:49 AM, pravin mohol pravin.mo...@gmail.comwrote: change your

Re: [android-developers] Re: Google Map Error

2011-02-22 Thread Nesim TUNÇ
I tried changed to Google Inc.:Google APIs:7 as my target platform in default.properties file. Same error and plus layot files cannot show the graphical ui, Missing theme error appears On Mon, Feb 21, 2011 at 5:27 PM, Spiral123 cumis...@gmail.com wrote: are you using the standard libraries and

[android-developers] Re: Google Map Error

2011-02-22 Thread pedro242
Basic remark.. Did you define your GoogleMapActivity in the manifest file? (activity android:name=.YourClassPath.GoogleMapActivity/ ) On Feb 21, 9:31 am, Nesim TUNÇ nesimt...@gmail.com wrote: Hi Awesome Developers! I'm trying to use Google Map in my Android App. My SDK version is 2.1 update 1

Re: [android-developers] Re: Google Map Error

2011-02-22 Thread pravin mohol
change your workspace or change your plug-in..you will solve it. On Tue, Feb 22, 2011 at 1:35 PM, Nesim TUNÇ nesimt...@gmail.com wrote: I tried changed to Google Inc.:Google APIs:7 as my target platform in default.properties file. Same error and plus layot files cannot show the graphical ui,

[android-developers] Re: Google Map Error

2011-02-21 Thread Spiral123
are you using the standard libraries and manually adding the Google Map jar? if so, change the properties of your app to point to the Google APIs instead. On Feb 21, 3:31 am, Nesim TUNÇ nesimt...@gmail.com wrote: Hi Awesome Developers! I'm trying to use Google Map in my Android App. My SDK

[android-developers] Re: Google Map Error

2010-02-11 Thread Vaikunth
Use onCreate() method. Like public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.map_test); map=(MapView)findViewById(R.id.map); ::: } I have no issue by calling

Re: [android-developers] Re: Google Map Error

2010-02-11 Thread Sasikumar.S
Thank U. I did the same and i got the answer Pls see the below link tell the answer http://groups.google.com/group/android-developers/browse_thread/thread/9f10a3c2511b4b6d http://groups.google.com/group/android-developers/browse_thread/thread/9f10a3c2511b4b6d On Thu, Feb 11, 2010 at

Re: [android-developers] Re: Google Map Error

2010-02-10 Thread Daniel Drozdzewski
ok, the exception you see means that you can set content view only once; Make sure you call setContentView() method only once rather than each time you want to bring the activity to foreground. Daniel On Wed, Feb 10, 2010 at 4:44 AM, Sasikumar.S sasikumar.it1...@gmail.com wrote: Thank You

[android-developers] Re: Google Map Error

2010-02-09 Thread Daniel Drozdzewski
... Caused by: java.lang.IllegalStateException: You are only allowed to have a single MapView in a MapActivity ... where do you call setContentView() from? It should be called from onCreate(). Daniel On 9 Feb, 13:10, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi, when i'm using Google

Re: [android-developers] Re: Google Map Error

2010-02-09 Thread Sasikumar.S
Thank You Daniel. I'm not calling setContentView() on onCreat(). I'm calling setContentView() on some other method. According to my program i can't able to set setContentView() in onCreat(). How to recreate it , to see one more time. can you pls give suggestion?... On Tue, Feb 9, 2010 at 8:14