[android-beginners] Re: How can I add a transparent scalable marker on Google map?

2010-01-31 Thread mapper
Thanks TreKing, Let me try as you have suggested. On Jan 29, 7:16 pm, TreKing treking...@gmail.com wrote: On Thu, Jan 28, 2010 at 10:58 PM, mapper sai.vaiku...@gmail.com wrote: Yes Kevin is right. I want the bubble/dialog which can show the information about that marker and two images

[android-beginners] Re: How can I add a transparent scalable marker on Google map?

2010-01-28 Thread mapper
, mapper sai.vaiku...@gmail.com wrote: It works fine when I use with Toast but not for Custom Dialog. When I tried to display custom dialogbox it gives me RunTime error (Force Close). How can I show my customDialog on the click of the marker? That's not much to go on. What's the runtime

[android-beginners] Re: How can I add a transparent scalable marker on Google map?

2010-01-27 Thread mapper
Hi TreKing, I have plot multiple markers on the google map using below. http://developer.android.com/resources/tutorials/views/hello-mapview.html Now I want to display information of the clicked marker in the rectangle which has TextView and two images(Which contains Click event through i can go

[android-beginners] Re: AlertDialog problem: always get NULL values.

2010-01-17 Thread mapper
Hi, Try as below. public void onClick(DialogInterface dialog, int whichButton) { AlertDialog ad = (AlertDialog) dialog; EditText editUsername = (EditText) ad.findViewById (R.id.username_edit); EditText editPassword =

[android-beginners] Re: Problem with Custom Dialog

2010-01-08 Thread mapper
); } }) - TreKing - Chicago transit tracking app for Android-powered deviceshttp://sites.google.com/site/rezmobileapps/treking On Thu, Jan 7, 2010 at 10:27 PM, mapper sai.vaiku...@gmail.com wrote: Hi Treking, I have tried as you have suggested but not able to get

[android-beginners] Re: Google Map is not displaying in emulator

2010-01-04 Thread mapper
wrote: hello RTFM~ :) Just read the guide below~ http://code.google.com/intl/US-EN/apis/maps/signup.html 2009/12/31 mapper sai.vaiku...@gmail.com Hi, The MapsDemo working fine. But in my app, same coding as MapsDemo, but still not working, only grids are there. I am having

[android-beginners] Re: Google Map is not displaying in emulator

2010-01-04 Thread mapper
of the manifest fixed the problem for me. This page was helpful too:http://informationideas.com/news/2008/11/06/getting-android-emulator-... Hope that helps you too John On Jan 4, 9:49 am, mapper sai.vaiku...@gmail.com wrote: Thanks, I have this key. But for Android development we have

[android-beginners] Re: Unable to see Google Map - but eveything else seems to be working....

2010-01-03 Thread mapper
Thanks for reply. I gone through the procedure for getting MD5 fingerprint. And it is valid .keystore file. And MapsDemo also working means maps Api key is valid. Like to add, when I have run, it shows me the google map, but it was just 3-4 times. After no display, only Grids. Waiting for the

[android-beginners] Re: Unable to see Google Map - but eveything else seems to be working....

2010-01-03 Thread mapper
Thanks for reply. I gone through the procedure for getting MD5 fingerprint. And it is valid .keystore file. And MapsDemo also working means maps Api key is valid. Like to add, when I have run, it shows me the google map, but it was just 3-4 times. After no display, only Grids. Waiting for the

[android-beginners] Re: Unable to see Google Map - but eveything else seems to be working....

2010-01-03 Thread mapper
Thanks for reply. I gone through the procedure for getting MD5 fingerprint. And it is valid .keystore file. And MapsDemo also working means maps Api key is valid. Like to add, when I have run, it shows me the google map, but it was just 3-4 times. After no display, only Grids. Waiting for the

[android-beginners] Re: Unable to see Google Map - but eveything else seems to be working....

2010-01-03 Thread mapper
Thanks for reply. I gone through the procedure for getting MD5 fingerprint. And it is valid .keystore file. And MapsDemo also working means maps Api key is valid. Like to add, when I have run, it shows me the google map, but it was just 3-4 times. After no display, only Grids. Waiting for the

[android-beginners] Re: Unable to see Google Map - but eveything else seems to be working....

2010-01-03 Thread mapper
Thanks for reply. I gone through the procedure for getting MD5 fingerprint. And it is valid .keystore file. And MapsDemo also working means maps Api key is valid. Like to add, when I have run, it shows me the google map, but it was just 3-4 times. After no display, only Grids. Waiting for the

[android-beginners] Re: Google Map is not displaying in emulator

2009-12-31 Thread mapper
Hi, The MapsDemo working fine. But in my app, same coding as MapsDemo, but still not working, only grids are there. I am having this problem since last 3 weeks but not get any solution. I have done lots of experiment for that but the result is same. And how to open port to internet access? Can

[android-beginners] Re: Google Maps Api - No image displayed

2009-12-15 Thread mapper
Thanks to all, Now i have issue same as Denis. As i have made one application for displaying maps. It was running fine for first 2 to 3 times then encounter same problem as Danish. I have set all the permission of ACCESS_COARSE_LOCATION, INTERNET and as all of you told and also uses-library

[android-beginners] Re: Google Maps Api - No image displayed

2009-12-15 Thread mapper
Hi, I have set all the permissions and also google library as all of you said. When i have started it working fine but after 3 to 4 times it shows me grids same as Denis. I have not change any settings or not the keystore file. What will be the problem? Thanks in Advance On Dec 14, 3:04 am,

[android-beginners] Re: Post Data and get the Response as a JSON

2009-11-11 Thread mapper
) feed.get(entry); int length = entry.length(); 2009/11/5 mapper sai.vaiku...@gmail.com: Hi, I am developing a application where I have topostthedatato the server and it will give meJSONas aresponse. So how can Ipostthedatato server andgettheJSONas aresponse which I have to parse

[android-beginners] Re: Post Data and get the Response as a JSON

2009-11-11 Thread mapper
(feed); JSONArray entry = (JSONArray) feed.get(entry); int length = entry.length(); 2009/11/5 mapper sai.vaiku...@gmail.com: Hi, I am developing a application where I have topostthedatato the server and it will give meJSONas aresponse. So how can Ipostthedatato server andgettheJSONas

[android-beginners] Problem: connection to Internet

2009-11-11 Thread mapper
Hi When I am sending and receiving the response I got this error: java.net.SocketException: Permission denied (maybe missing INTERNET permission) I am using this /* makes a request and get the response as string */ String responseStr = null; HttpClient client = new DefaultHttpClient(); HttpGet

[android-beginners] Post Data and get the Response as a JSON

2009-11-05 Thread mapper
Hi, I am developing a application where I have to post the data to the server and it will give me JSON as a response. So how can I post the data to server and get the JSON as a response which I have to parse it? Thanks in Advance -- You received this message because you are subscribed to the