[android-developers] Check for existing requestLocationUpdates triggered from my app

2013-06-28 Thread Davy
Assuming my application uses a PendingIntent to request background location updates from the new Google Location APIs (Google Play Services) like this : locationclient = new LocationClient(this,this,this); locationclient.connect(); Intent intentService = new

[android-developers] Camera can not open, crash randomly.

2013-06-28 Thread Huang, Habzy(Shan)
Hi, I try to develop a android application with front camera. But I can not find the reason for this random crash. Is there any one meet the same issue? Or can some one help me to find the reason? Thanks. 1. I'm sure I've released the camera after the last used. 2. The crash main log is Fail

[android-developers] Re: heatmap using TileOverlay on Google Maps v2

2013-06-28 Thread gjs
Hi, I am actually doing similar stuff to most things you mentioned, using a custom View (overlayed) onto top of the Map and drawing bitmaps to the canvas but not needing to rescale the bitmaps for zoom, using TileOverlay, using GroundOverlay and also drawing Polylines, filled Polygons

[android-developers] Run http server in android

2013-06-28 Thread jrichards1...@googlemail.com
Hi all. is it possible to create a mini HTTP server that acts as a proxy where i can recieve any requests from a webview and it will pass that request to my http proxy server running inside the app that can then view the raw contents of that request(http headers, bodies etc) and handle it from

[android-developers] How Can I Send Notification to my Android App If I made an Entry on Server

2013-06-28 Thread Aadi Rockzz
Hi, I want to get a notification on my android device if i made a entry on Server side. I got to know after searching about this using gcm and c2dm we can do this. But the problem is i saw something like using gcm we can send only 100 notification per day. But my requirement is i want to send

[android-developers] Re: How Can I Send Notification to my Android App If I made an Entry on Server

2013-06-28 Thread RichardC
The only limit of 100 I can find is on Multiple-Senders see: http://developer.android.com/google/gcm/adv.html#multi-senders GCM messages are throttled see: http://developer.android.com/google/gcm/adv.html#throttling On Friday, June 28, 2013 1:15:09 PM UTC+1, Aadi Rockzz wrote: Hi, I want to

[android-developers] How to sync folder with cloud?

2013-06-28 Thread Ben Lee
Hi, We have a simple note app, it save each note as a single file. It works locally, doesn't even require network permission. I am thinking about allowing user to sync their files with their cloud storage account, like Dropbox, Google Drive, SkyDrive, etc. My first guess is this is a general

[android-developers] hi.

2013-06-28 Thread Ibrahim Sada
Hi Friends... I Want To Make Android Device As A Server.. Can Any One Help Me Please I Got Strucked in My Work Yaar.. Thanks In Advance... -- -- 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] Run http server in android

2013-06-28 Thread Michael Banzon
It is quite possible - but: Another alternative is to set up a local wireless network containing a proxy - this can by done by most laptops/desktops with wireless networking and the right software. By doing this you can connect through the proxy running on the computer and debug communication in

Re: [android-developers] Re: How Can I Send Notification to my Android App If I made an Entry on Server

2013-06-28 Thread Kristopher Micinski
That's right: there are tons of apps handling way more than 100 messages per day.. Kris On Fri, Jun 28, 2013 at 8:33 AM, RichardC richard.crit...@googlemail.com wrote: The only limit of 100 I can find is on Multiple-Senders see: http://developer.android.com/google/gcm/adv.html#multi-senders

Re: [android-developers] Re: How Can I Send Notification to my Android App If I made an Entry on Server

2013-06-28 Thread Michael Banzon
Confirmed. When developing my latest app I sent a lot more than 100 messages per hour during extended work hours. On Fri, Jun 28, 2013 at 5:20 PM, Kristopher Micinski krismicin...@gmail.com wrote: That's right: there are tons of apps handling way more than 100 messages per day.. Kris On

[android-developers] Horizontal ListView Adapter

2013-06-28 Thread Charx
Am i the only one that is missing a horizontal ListView adapter that has the ability to recycle views? -- -- 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

Re: [android-developers] Horizontal ListView Adapter

2013-06-28 Thread Παύλος-Πέτρος Τουρνάρης
What do you mean by horizontal? On Fri, Jun 28, 2013 at 6:49 PM, Charx evertvdbr...@gmail.com wrote: Am i the only one that is missing a horizontal ListView adapter that has the ability to recycle views? -- -- You received this message because you are subscribed to the Google Groups

[android-developers] Images at different resolutions

2013-06-28 Thread Tiago Braga
Hi, I have a picture of cover with the play button in the middle. In this image has several elements objects at the top of the page, at the bottom of the page, etc.. I have two options to develop the image in existing resolutions: 1 - Having a single image and place as background, we will have

Re: [android-developers] Run http server in android

2013-06-28 Thread jrichards1...@googlemail.com
i have setup my webview's proxy using this snippet of code below: * ProxySettings.setProxy(mContext, http://127.0.0.1;, PORT);* Here is my socket server listener *serverSocket = new ServerSocket(PORT);* *thread = new Thread(runnable, this.getClass().getSimpleName());* ** **

[android-developers] 9.png file not spanning the LinearLayout when android:paddingBottom is specified

2013-06-28 Thread Shri
I have the following layout file which uses the attached 9.png. It results in the attached screenshot where the red background from the 9.png does not extend all the way behind the button. If I remove the android:paddingBottom=1dp attribute below, things work as I expect. Is this behavior

[android-developers] did something happen to GooglePlay Alpha testing today?

2013-06-28 Thread Andrew
I am going through the steps for Alpha testing an app on GooglePlay for the first time. This morning, I uploaded an APK to the Alpha Test tab of the Developer Console and Published the app. (My understanding is that because I have not uploaded any APK to the Production tab, the App is still

[android-developers] uiautomator not found on AOSP full_manta-userdebug (4.2.2) build

2013-06-28 Thread Android Noob
I was able to successfully compile an AOSP build with the GMS apps included, but when I tried running my MonkeyRunner script on the device, the script crashed because it could not find uiautomator. If I do adb shell uiautomator, the shell prompt responds with /system/bin/sh: uiautomator

Re: [android-developers] Re: How Can I Send Notification to my Android App If I made an Entry on Server

2013-06-28 Thread Anees Thyrantakath
Thanks everyone for the clarification. On Fri, Jun 28, 2013 at 8:58 PM, Michael Banzon mich...@banzon.dk wrote: Confirmed. When developing my latest app I sent a lot more than 100 messages per hour during extended work hours. On Fri, Jun 28, 2013 at 5:20 PM, Kristopher Micinski

[android-developers] Re: did something happen to GooglePlay Alpha testing today?

2013-06-28 Thread Andrew
It appears that com.android.vending is causing a SIGSEGV (SEGV_ACCERR). Perhaps this is the wrong forum since this appears to be a Google service issue. Can someone suggest where I should go? -- -- You received this message because you are subscribed to the Google Groups Android Developers