[android-developers] How to implement actiobar drawers?

2012-08-16 Thread Alexey Zakharov
There is Drawers section inside ActionBar guidelines http://developer.android.com/design/patterns/actionbar.html How actionbar drawer should be implemented? -- Alexey -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Please include DiskLruCache to next version of support package

2012-04-20 Thread Alexey Zakharov
Please include DiskLruCache (http://developer.android.com/training/displaying-bitmaps/cache-bitmap.html) to next version of support package. Alexey Zakharov -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Crashed service restarted by system doesn't call onStart

2012-03-05 Thread Alexey Zakharov
So what is the right solution. Start service from onCreate? On Wednesday, April 1, 2009 2:38:15 AM UTC+7, Dianne Hackborn wrote: That is working as intended. onStart() is called each time someone calls startService(); if nobody has called startService() since your last onStart(), then

[android-developers] Google Places API for Android

2011-12-17 Thread Alexey Zakharov
I want to integrate Google Places Api to my android application. Im afraid that my api key could be stolen from Android app and used by third party. How can I avoid that? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Android Network Provider sometimes stop using WiFi and start using Cell Tower even then person is still on same place. How to avoid that?

2011-12-16 Thread Alexey Zakharov
Android Network Provider sometimes stop using WiFi and start using Cell Tower even then person is still on same place. How to avoid that? I have tested several apps. Google maps, mapquest, glympse. Only google maps works correct. My own app, mapquest and glympse show wrong location based on

[android-developers] How can I cache Google Maps tiles using Android SDK?

2011-12-09 Thread Alexey Zakharov
I want to implement Download map areahttp://googleblog.blogspot.com/2011/07/download-map-area-added-to-labs-in.htmlfeature like official Google Map application. Is it possible or not? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] How to disable discrete zoom level in android google maps?

2011-11-21 Thread Alexey Zakharov
Android google maps sdk approximate zoom level to discrete values. I mean that i cannot set it to 13.33 it will convert it to 13. However Google Android Maps application doesn't do it. How they achieved that? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: How to disable discrete zoom level in android google maps?

2011-11-21 Thread Alexey Zakharov
So Google provides legacy api to developers. Why google won't adopt same technique for sdk. =\ -- 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 this

[android-developers] How can implement double tap zoom in gesture, and two-fingers tap zoom out gesture?

2011-11-21 Thread Alexey Zakharov
How can implement double tap zoom in gesture, and two-fingers tap zoom out gesture? This gestures works in Google Maps Application. They are by default available in IPhone SDK. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Does Google has any plan to release vector based google maps for android SDK?

2011-11-21 Thread Alexey Zakharov
Does Google has any plan to release vector-based google maps for android SDK? They have release vector-based google map application for Android long ago, but api is still based on image tiles. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] What is the proper way to change look of MapView zoom controls in Android?

2011-11-15 Thread Alexey Zakharov
What is the proper way to change look of MapView zoom controls in Android? I want to repoduce zoom button from new google maps. https://lh4.googleusercontent.com/-XW8UlX0U0Bw/TsInKzXKe-I/AfQ/x5aqzeV8PvE/SC2011-111658.png -- You received this message because you are subscribed to

Re: [android-developers] What is the proper way to change look of MapView zoom controls in Android?

2011-11-15 Thread Alexey Zakharov
I just like this style and want to reproduce this in my app. -- 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 this group, send email to

Re: [android-developers] Fragments /Compatibility API Backstack Clearing Problem

2011-11-03 Thread Alexey Zakharov
Even with POP_BACK_STACK_INCLUSIVE onResume of popped Fragment is called. You need to add alternative method that will allow remove element from back stack without resuming it. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] How can I pop fragment from backstack without resuming it?

2011-11-02 Thread Alexey Zakharov
How can I pop fragment from backstack without resuming it? I just want to remove from back stack, I don't want to display it. -- 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] How can handle AlertDialogFragment events inside Fragment that created it?

2011-11-01 Thread Alexey Zakharov
For dialogs fragments UI google recommendshttp://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/FragmentAlertDialog.html to extend DialogFragment. However in provided sample it handle alert inside activity, but I need to do it inside fragment that invoke

[android-developers] Does Google notify devise that c2dm registration_id is expired?

2011-09-27 Thread Alexey Zakharov
Does Google notify devise that c2dm registration_id is expired? If yes in what method should I handle this? -- 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

[android-developers] Is there any oauth2 lib that implemnt client side flow for both facebook and google?

2011-08-31 Thread Alexey Zakharov
Is there any oauth2 lib that implemnt client side flow for both facebook and google? -- 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 this group,

Re: [android-developers] What should I use for common parts of UI in Android application?

2011-08-09 Thread Alexey Zakharov
Yep, from my searches in Uber's code it uses ViewStabs and single map activity. -- 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 this group, send

[android-developers] What is the right way to get updates from REST service by timer in Android?

2011-08-09 Thread Alexey Zakharov
I wonder what is the right way to get updates from REST service by timer in Android? May be I should use timer taskhttp://developer.android.com/reference/java/util/TimerTask.htmlfor this? -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: What is the right way to get updates from REST service by timer in Android?

2011-08-09 Thread Alexey Zakharov
*UPDATE: I need to receive updates even if user has switched to another application or receive a call. UI also should be updated. So when user switch back to the application he should see updated view.* -- You received this message because you are subscribed to the Google Groups Android

[android-developers] What should I use for common parts of UI in Android application?

2011-08-08 Thread Alexey Zakharov
Here is Uber Android application. As you see each of screen has some common elements: header, map control etc. But each view has different header buttons and subview with some view specific details. Should this screens be separate activities? Is fragments API right thing to implement this?

[android-developers] Simulate GPS speed and heading on Android Emulator

2011-07-25 Thread Alexey Zakharov
Im trying to test my phonegap gps location application on Android Emulator. I need to simulate W3C gps speed and heading on Android Emulator http://dev.w3.org/geo/api/spec-source.html. Using DDMS i was able to setup kml path. However navigation.watchPosition only see latitude and longitude