[android-developers] How to inflate a MapView inside a ViewFlipper??

2012-05-09 Thread pedro242
Hi, I'm stuck in this issue for a while now.. went around forums, books (M.Murphy, R.Meier) and I did not find any real helpful threads.. My main activity is a ListActivity, where the view(main.xml) contains a ListView and a ViewFlipper just below. For each selected line in my ListView i

Re: [android-developers] How to inflate a MapView inside a ViewFlipper??

2012-05-09 Thread pedro242
Have you ever tried this? Not sure it works, since i will likely face another issue in managing the ListView without the ListActivity... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] MapOverlay and displaying location as an address

2012-05-09 Thread pedro242
For the Geocoder, here's a bunch of code you can use.. LocationManager locMgr = (LocationManager)getSystemService(Context.LOCATION_SERVICE); Location lastLoc = locMgr .getLastKnownLocation(LocationManager.GPS_PROVIDER); ListAddress addressList; Geocoder geo = new

Re: [android-developers] How to inflate a MapView inside a ViewFlipper??

2012-05-09 Thread pedro242
Thanks guys, just tried it out and it works... But the inflating manner is still confused for me. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Re: how to place a button inside the map view

2012-05-04 Thread pedro242
Hi Siva, I would like to know how you have managed your ViewFlipper from an Activity point of view?? What is your main Activity type that performs your setContentView()? I would like to do the same thing, putting different Views (MapView, ListView,..) inside a ViewFlipper, but i can not find

[android-developers] Re: service process priority: startService() vs bindService()

2011-03-05 Thread pedro242
Still no anwsers/comments.. Not any specialist of Android Services?... On Mar 1, 8:06 pm, pedro242 pedro.contreir...@gmail.com wrote: Hi there, I would need your help to clarify what is the priority of a process hosting a Service when the service is either started (startService() ) or bound

[android-developers] Re: service process priority: startService() vs bindService()

2011-03-05 Thread pedro242
to be also destroyed.. That is my real concern.. Mark, do you confirm my understanding? On Mar 5, 3:40 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, Mar 1, 2011 at 2:06 PM, pedro242 pedro.contreir...@gmail.com wrote: When the Service is started, the Android doc is quite clear saying

[android-developers] Re: Long server process...solution

2011-03-05 Thread pedro242
on the client side, is there a solution that'll keep a connection open and poll every few seconds to find out how far along the process is. Since you perform an HTTP POST, your client just waits for the server response, in meantime from your java code point of view you can no do nothing

[android-developers] Re: Can i manipulate JavaScript events or functions in WebView ?.

2011-03-05 Thread pedro242
Everything is explained here: http://developer.android.com/guide/webapps/webview.html On Mar 4, 9:58 am, Santhosh Kumar santhoshgu...@gmail.com wrote: thanks regards, G.Santhosh Kumar +91 9966973790 -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: service process priority: startService() vs bindService()

2011-03-05 Thread pedro242
, pedro242 pedro.contreir...@gmail.comwrote: (Great! An answer from the prestigious M.Murphy!! Great books!!) Thanks Mark for your answer.. But the Services in bound mode are still not clear for me.. Android Doc says: If there are clients bound to the service, then the service's

[android-developers] service process priority: startService() vs bindService()

2011-03-02 Thread pedro242
Hi there, I would need your help to clarify what is the priority of a process hosting a Service when the service is either started (startService() ) or bound (bindService()): When the Service is started, the Android doc is quite clear saying: If the service has been started, then its hosting

[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