[android-developers] Google PlayStore Closed Beta user limits

2017-08-25 Thread Ian LxLittle
c but we would prefer ideally if it wasn't listed for general public download. --Ian -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email t

[android-developers] Re: Intent.ACTION_PICK - how to determine when a Google Photo download has completed

2016-11-15 Thread Ian Spencer
().getContentResolver(), image[0]); return ThumbnailUtils.extractThumbnail(bm, THUMBSIZE, THUMBSIZE); } catch (Exception e) { return null; } } On Tuesday, 15 November 2016 10:22:19 UTC, Ian Spencer wrote: > > I have a decent set of code to handle the Intent, absolutely stock,

[android-developers] Intent.ACTION_PICK - how to determine when a Google Photo download has completed

2016-11-15 Thread Ian Spencer
I have a decent set of code to handle the Intent, absolutely stock, using AsyncTask to process the result of the download. This works perfectly when the selected photo is anywhere on the phone, but Gallery also shows my lovely collection of 27,000 photos. When I select an image from there, Andr

[android-developers] Upload freeze, winter 2016

2016-11-04 Thread 'Ian Murray' via Android Developers
Hi, Is there a freeze on uploads over the winter holiday period, like with the itunes connect shutdown over Christmas? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send

[android-developers] Adding contacts to AIDL

2013-11-01 Thread Giles Ian
Is it possible to add constants to AIDL. Thanks -- 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 android-developers+unsub

[android-developers] How to use out and inout parameters in AIDL

2013-10-28 Thread Giles Ian
When I am using out or inout I am getting following error: 'inout String exception' can only be an in parameter. 'out String exception' can only be an in parameter. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, se

[android-developers] Custom exception in AIDL

2013-10-25 Thread Giles Ian
Can I throw a custom exception from an aidl service. If yes how ?? -- 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 androi

[android-developers] Can a system service read and write files inside app space[Framework]

2013-10-14 Thread Giles Ian
1. Can any system service (lets say SystemServer.java) read and write file inside app space, lets say any file inside files dir 2. Can any system service create dir inside app space Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

Re: [android-developers] Uri for accounts table in contacts db

2013-10-03 Thread Giles Ian
Thanks Douglous and Andrew, What I am actually looking for is *account_id* based on *account_name* and * account_type, *and this info is only available in accounts table. On Wed, Oct 2, 2013 at 11:24 PM, Andrew Mackenzie < and...@mackenzie-serres.net> wrote: > The contacts content provider is q

[android-developers] Uri for accounts table in contacts db

2013-10-02 Thread Giles Ian
I tried with content://com.android.contacts/accounts but that does not work -- 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 emai

[android-developers] Re: in-app billing disconnects from activity on configuration change

2013-09-25 Thread Ian Ni-Lewis
It seems like the main problem is that you're initiating IAB from an activity, not a service. Activity lifetime is governed primarily by user actions, so an activity is rarely the right container for something that needs to respond to events that aren't initiated by the user. On Tuesday, Septem

[android-developers] http://android.stackexchange.com/questions/53147/getting-all-account-details-including-password-on-rooted-device

2013-09-12 Thread Giles Ian
http://android.stackexchange.com/questions/53147/getting-all-account-details-including-password-on-rooted-device -- 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 uns

[android-developers] Reading all accounts on the device

2013-09-12 Thread Giles Ian
Is it possible to developer a app which can read all the accounts on device like FB/Twitter/gmail etc including password. Can it be 3rd party app if yes what permission will it need. Can it be a system app Any help/link would be greatly appreciated. Thanks -- You received this message because

[android-developers] Understanding android multi user framework [Not app related]

2013-09-12 Thread Giles Ian
I want to understand how the multi user profiles work on data level. Like how the data isolation is maintained, how and where is the data kept for different user. I did google but could not find any detailed document by google or aosp except http://developer.android.com/about/versions/android-4.2

[android-developers] ResourceNotFound exception after modifying string in android resource (.arsc) file

2013-07-31 Thread Giles Ian
I have modified one of the strings in android binary resource(.arsc) file successfully. By successfully I mean I am able to replace a string with a bigger one, move other binary data, update offsets and lengths. I also tested it out by trying to parse/read this same modified arsc file. Now the iss

[android-developers] Modifying an String Binary Resource File (*.arsc) of android

2013-07-25 Thread Giles Ian
Please check the question on the link: http://stackoverflow.com/q/17867452/2585419 -- -- 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,

[android-developers] Re: Modifying an String of Android Resource File (*.arsc)

2013-07-25 Thread giles ian
please find below link for understanding the entire structure binary xml ans .arsc http://justanapplication.wordpress.com/android-internals/ My question is don't we have to move the bytes when we replace the string with bigger one, apart from changing the values you mentioned below On Tuesda

[android-developers] Parsing + Modifying resource.arsc programmatically [ without apktool ]

2013-07-11 Thread giles ian
Hello All, I need to parse and make changes in resource.arsc programmatically without the help of apktool. Something like http://stackoverflow.com/a/4761689, but this is for android manifest. And the structure of manifest and resource.arsc is different so the above link wont work. Does anyone k

Re: [android-developers] Re: Modifying an String of Android Resource File (*.arsc)

2013-07-11 Thread giles ian
android. On Thu, Jul 11, 2013 at 8:13 AM, Yaron Reinharts wrote: > No need to reinvent the wheel: > https://code.google.com/p/android-apktool/ > > Hope this helps > Yaron > > On 07/11/2013 02:13 AM, giles ian wrote: > > Hi Illyoung Choi, > * > * > *Is it possib

[android-developers] Re: Modifying an String of Android Resource File (*.arsc)

2013-07-10 Thread giles ian
Hi Illyoung Choi, * * *Is it possible for you to share the code for the entire thing. i.e. * * * *1.Parsing* *2. Modifying * On Tuesday, June 21, 2011 8:09:12 PM UTC-7, Illyoung Choi wrote: > > Hi All. > > Last day, I made a simple application for parsing an Android Resource > File (*.arsc) and m

[android-developers] Re: Modifying an String of Android Resource File (*.arsc)

2013-07-10 Thread giles ian
Thanks Illyoung Choi for sharing your findings, great help... and dont bother narrow minded people like Zsolt Vasvari On Tuesday, June 21, 2011 8:09:12 PM UTC-7, Illyoung Choi wrote: > > Hi All. > > Last day, I made a simple application for parsing an Android Resource > File (*.arsc) and modify

[android-developers] SAX Parsing meta-data tags in menifest file

2013-06-20 Thread giles ian
Hello, I need to parse meta-data tags for SyncAdapter, Authenticator etc. Issue its not necessary that the order of name and resource tag is one after the other. 1. 2. order of name and resource tag can be reverse also. Can someone please tell me a good logic for the same. Thanks, Paw

[android-developers] Re: Global Search only displaying one search suggestion in 2.2

2013-06-04 Thread Ian Warwick
, SearchManager.SUGGEST_COLUMN_QUERY } Hope that helps someone else as it wasted hours of my time! :) Regards, Ian On Wednesday, 18 August 2010 22:47:02 UTC+1, James Chou wrote: > > I am having a problem with global search only showing 1 search > suggestion even though I am re

[android-developers] Re: HLS audio and getDuration / seekTo strangeness

2013-04-30 Thread Ian Ni-Lewis
Only the one you've already found: wait for a couple seconds until the stream duration becomes non-zero. Ian On Tue, Apr 30, 2013 at 9:32 AM, Larry Meadors wrote: > Thanks Ian - any known workaround? > > Larry > > On Tue, Apr 30, 2013 at 10:28 AM, Ian Ni-Lewis wrote: >

[android-developers] Re: HLS audio and getDuration / seekTo strangeness

2013-04-30 Thread Ian Ni-Lewis
This is a known issue that will be fixed in a future version of Android. Calling prepare() unfortunately has no effect. Ian On Saturday, April 27, 2013 12:45:33 PM UTC-7, Larry Meadors wrote: > > I'm trying to play an hls audio stream, and start playback at a specific > point

Re: [android-developers] Maps api key v1?

2013-04-30 Thread Ian Ni-Lewis
+retomeier, who assured me that this is possible :-) Ian On Tue, Apr 30, 2013 at 5:48 AM, Craig Payne wrote: > Hi Ian, > > You mean I can use my release key for development also? I do have one, of > course, but I will have to look into how to do this. Can you point me in > the

Re: [android-developers] Maps api key v1?

2013-04-29 Thread Ian Ni-Lewis
I agree, you should have been notified. I do not know why you weren't. I don't understand the issue with the debug certificate. Do you not have a valid release key certificate that you can use for development? Ian On Fri, Apr 26, 2013 at 6:59 AM, Craig Payne wrote: > Not quite tr

Re: [android-developers] Maps api key v1?

2013-04-24 Thread Ian Ni-Lewis
On Wed, Apr 24, 2013 at 4:01 PM, Indicator Veritatis wrote: > There is a world of a difference, Ian, between "updating our software" and > completely breaking an entire set of APIs. Google did the latter. Many > other companies instead keep the old APIs working for years, encou

Re: [android-developers] Maps api key v1?

2013-04-23 Thread Ian Ni-Lewis
avoid breaking changes, they do sometimes happen. How would you prefer to be notified of these changes? Have you ever obtained a v1 API key or uploaded an app to Google Play? If not, then how would Google have communicated this important information to you? Ian On Tuesday, April 23, 2013 2

[android-developers] Re: I was banned because i used the replay to users reviews feature :-(

2013-04-02 Thread Ian Ni-Lewis
Sounds like a timing coincidence to me. A single reply to user wouldn't get you banned. On Sunday, March 24, 2013 8:17:34 AM UTC-7, AC wrote: > > Hi, > I got my account suspend after replaying to one of my users, > The user complained about inappropriate index in my app. > I answered he is correc

[android-developers] 9GAG like app [ api for images along with some some data attached to it ]

2013-04-01 Thread giles ian
Hello Guys, I am planning to develop 9GAG like for learning purpose. Obviously I dont want to waste time on server building, so is there any dummy server, free images api. So that i can directly start working on android client. Thanks, -- -- You received this message because you are subscrib

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Ian Ni-Lewis
s paradigm is similar in many ways to Visual Studio, not because it's inherently better. I will, however, stand by my observation that NDK development in Eclipse is no fun at all. That isn't necessarily the fault of Eclipse. Ian On Tue, Mar 12, 2013 at 10:52 AM, Romain Guy wrote: >

[android-developers] Re: ADT tutorials

2013-03-12 Thread Ian Ni-Lewis
Hi James, I've recently formed a team within Android to overhaul our samples and tutorials. Can you give me any more details about the tutorials that don't work? Thanks Ian On Tuesday, February 26, 2013 4:58:06 AM UTC-8, James Richardson wrote: > > I have been trying to do the A

Re: [android-developers] Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Ian Ni-Lewis
You don't use an IDE to actually build the Android source tree, do you? On Tue, Mar 12, 2013 at 9:11 AM, Romain Guy wrote: > The C++ plugin I found has not been updated in ages. It might work for NDK > dev but Android's source tree was just too much :) > On Mar 12, 2013 9:0

Re: [android-developers] Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Ian Ni-Lewis
How complex is your build? IntelliJ's built-in build system works fine for me; I've never had to touch an ant file. There are a couple of C++ plugins for IntelliJ. I haven't used them, but it's hard to imagine them being worse for NDK work than Eclipse CDT ;-) On Tuesday, March 12, 2013 8:35:3

[android-developers] Facebook Nearby Graph API (with out fragment)

2013-02-12 Thread giles ian
Hello, I need to get nearby places using FB's new graph API. I am able to do that but it returns me Fragment. Is there an API which will return me only content (JSON) Thanks, -Giles -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

Re: [android-developers] Re: Mechanoid - open source productivity plugin for Android

2013-02-07 Thread Ian Warwick
Thanks for the clarification Kris, my only intention was to make Mechanoid better and work for others, at the moment it solves my needs, with community feedback I can make it much, much better :) On Thursday, 7 February 2013 05:57:27 UTC, Kristopher Micinski wrote: > > I disagree: this looks lik

Re: [android-developers] Re: Mechanoid - open source productivity plugin for Android

2013-02-06 Thread Ian Warwick
It is an open-source tool for rapidly developing Android compoments. On 7 Feb 2013 02:10, "Lew" wrote: Ian Warwick wrote: > I have just released some overview docs for an Eclipse Plugin called > Mechanoid here > http://robotoworks.github.com/**mechanoid/<http://robotowork

Re: [android-developers] Re: Mechanoid - open source productivity plugin for Android

2013-02-06 Thread Ian Warwick
It is an open-source tool for rapidly developing Android compoments. On 7 Feb 2013 02:10, "Lew" wrote: > Ian Warwick wrote: > >> I have just released some overview docs for an Eclipse Plugin called >> Mechanoid here >> http://robotoworks.github.com/**mechan

[android-developers] Mechanoid - open source productivity plugin for Android

2013-02-06 Thread Ian Warwick
you generate all the boiler plate that come with it. Sorry if you consider this spam, its for a good cause, the more people that use Mechanoid helps me improve the product! :) Look forward to your feedback. Regards, Ian -- -- You received this message because you are subscribed to the Google G

[android-developers] Re: TCP Socket sample

2013-01-31 Thread Ian Ni-Lewis
oid provides a rich set of classes that help with this, but it can be hard for a newcomer to figure out which APIs to use when. Ian On Thursday, January 31, 2013 1:04:57 PM UTC-8, bob wrote: > > I was looking at the samples for Android, hoping to find an example of a > TCP Socket client

[android-developers] Android pre-compiler NullPointerException: LICENSE is to blame

2013-01-15 Thread Ian
I just updated to the SDK tools 21.0.1 and ADT 21.0.1.v201212060256-543035. This killed my project: I started getting a pre-compiler fail on every build, with no explanation. After MUCH trial and error, I found that deleting a file called "LICENSE" from my source tree fixes it -- BUT ONLY AFT

Re: [android-developers] New In-app billing (v3)

2012-12-12 Thread Ian Ni-Lewis
when the confirmation arrives is that it was killed to make room for Google Play to run. Good times. :-) Ian > > Bram > > > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group

Re: [android-developers] New In-app billing (v3)

2012-12-11 Thread Ian Ni-Lewis
ty easy to get right. There are a couple things that v3 doesn't support yet (subscriptions, mostly) but if v3 covers your needs, you should use it. Ian On Monday, December 10, 2012 6:51:09 PM UTC-8, Nikolay Elenkov wrote: > > On Tue, Dec 11, 2012 at 11:00 AM, Nikolay Elenkov > >

Re: [android-developers] Re: When can every developer reply to reviews?

2012-12-06 Thread Ian Ni-Lewis
d feedback process for everyone. I think you'll be very happy with what they've got planned. Ian On Wednesday, December 5, 2012 12:32:30 AM UTC-8, Brill Pappin wrote: > > Haha. The list of experience :) > > Seriously though, sometimes you just need to answer, but I think that if

[android-developers] Push me baby ( or 3rd-party Application Server simulator) like app for android GCM

2012-11-28 Thread giles ian
Is there a push me baby like app for android which will basically work as server simulator for testing client. -- 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 unsub

Re: [android-developers] Re: Webapp with in-app Billing

2012-11-13 Thread Ian Ni-Lewis
If you're using someone else's wrapper, then you're probably dependent on them to support in-app billing. Contact Phonegap tech support. Ian On Thu, Nov 8, 2012 at 2:39 PM, Juan Manuel Rodriguez Castro < lostuse...@gmail.com> wrote: > I'm making an HTML5-based app

Re: [android-developers] Webapp with in-app Billing

2012-11-07 Thread Ian Ni-Lewis
you can write a Java method to do it and then inject that Java method into your Javascript using WebView.addJavascriptInterface<http://developer.android.com/reference/android/webkit/WebView.html#addJavascriptInterface(java.lang.Object, java.lang.String)>. Ian On Wednesday, November 7, 2012

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-29 Thread Ian Ni-Lewis
Did you send the bugreport as requested in their last email? I know it seems like a pain, but keep in mind that there are a limited number of engineers that can help with this. The support staff is trained to gather all of the information they possibly can before bugging the engineers. Ian On

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Ian Ni-Lewis
That sounds about right. Ian On Fri, Oct 26, 2012 at 1:13 PM, Silvio Marano wrote: > The ticket number? Is the number #1143185470 in the email subject?! > > Il giorno venerdì 26 ottobre 2012 22:05:26 UTC+2, Ian Ni-Lewis ha scritto: >> >> I'm not a Play Support engine

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Ian Ni-Lewis
veloper site>> > > I have tried to report again the issue but haven't answered anything. > > Totally absurd... > > > Il giorno venerdì 26 ottobre 2012 19:52:07 UTC+2, Ian Ni-Lewis ha scritto: >> >> This is the right answer. If you fill out the appropriat

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-26 Thread Ian Ni-Lewis
to this group, send email to android-developers@googlegroups.com > > To unsubscribe from this group, send email to > > android-developers+unsubscr...@googlegroups.com > > For more options, visit this group at > > http://groups.google.com/group/android-developers?hl=en &

[android-developers] Re: Difference between Android and Linux Kernel ?

2012-10-22 Thread Ian Ni-Lewis
re, cache sizes, and memory bus will have as much or more impact on real-world performance. Ian On Friday, October 19, 2012 12:05:27 AM UTC-7, chain_chelliah wrote: > > Thanks for quick reply, > > I'm not using same hardware platform for all. Android alone > running

Re: [android-developers] Re: Google has received a subpoena seeking information related to Android applications

2012-10-04 Thread Ian Thecleric
On Thursday, October 4, 2012, Tim in Boulder wrote: > On Tuesday, October 2, 2012 2:54:30 PM UTC-6, Ian wrote: >> >> Did those who received this email ever made DMCA copyright infringement >> notices to websites hosting/linking their apps illegaly? >> I did, several ti

Re: [android-developers] Consume POJO based web services

2012-10-04 Thread giles ian
wrote: > On Thu, Oct 4, 2012 at 3:50 AM, giles ian wrote: > >> How can i consume POJO based web services i > > > Write some code. This has nothing to do with Android specifically. > > > ---

[android-developers] Consume POJO based web services

2012-10-04 Thread giles ian
How can i consume POJO based web services i -- 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 android-developers+unsubscr.

[android-developers] Re: Google has received a subpoena seeking information related to Android applications

2012-10-03 Thread Ian
So it seems to be rather good news, isn't it? The FBI is hunting down pirate sites... Did those who received this email ever made DMCA copyright infringement notices to websites hosting/linking their apps illegaly? I did, several times. And now we've got this email; it may be related. On Tuesday

[android-developers] Re: Android MediaPlayer sometimes stops playing a sound file early

2012-09-12 Thread Ian Warwick
I know this is old but recently had this issue with older devices, particularly a Samsung Galaxy S running 2.2. What you said about the 300ms seems to be correct, and the issue is because you release the media player in the onCompletion(...) listener, a work around would be to delay the release

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-27 Thread Ian
So, I'm also using a Thunderbolt Display. I plugged into the USB on the display and that worked. So it looks like it has something to do with the usb ports on the computer itself. I think they are USB 3.0 so maybe that's the difference. On Monday, August 27, 2012 12:36:01 PM UTC-4,

[android-developers] Re: ADB and Mountain Lion Issues

2012-08-27 Thread Ian
Any update Dave? I just got a new Macbook Pro with Mountain Lion and am having trouble getting my phone to detect ADB as well. About Phone > Status shows Charing (USB) but no indicator comes up on my phone for debugging and I'm not getting any device in adb devices either. I'm also unable to mo

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-08-17 Thread Ian Ni-Lewis
On Thu, Aug 16, 2012 at 1:09 PM, Kostya Vasilyev wrote: > 2012/8/16 Ian Ni-Lewis > >> Who did you contact at Google? > > > I don't personally know anyone at Google, and not sure if Google employees > with G+ accounts would appreciate a random person trying

Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-08-16 Thread Ian Ni-Lewis
Who did you contact at Google? You won't find any answers to Google Play account issues on the android-* forums. On Thursday, August 16, 2012 1:36:59 AM UTC-7, Kostya Vasilyev wrote: > > Thanks for responding. > > I guess the failure rate is pretty low for this to be treated as a > priority issu

[android-developers] Re: mp3 file cant retrieved from server in a app.

2012-08-16 Thread Ian Ni-Lewis
For simple questions like this, please use Stack Overflow instead of spamming multiple Android groups. Thanks! Ian On Thu, Aug 16, 2012 at 11:29 AM, Talha Qamar wrote: > Hi,A mp3/ogg file is uploaded at server.I just wanna play that mp3/ogg > file in my app.I have used the following code

[android-developers] hosting web services (php+mysql)

2012-08-10 Thread giles ian
Hi All, I will be creating a (php + mysql) server, which will expose few web services for android app, Where can i host this for free or may be paid as well. Is app engine as option. Thanks, -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] Android instant messaging.

2012-08-02 Thread Ian Buchanan
Android does not have an equivalent of BBM. If it did, thousands of users would make the switch including myself! And it would make Android that much cooler. BB's instant messaging feature is so effective that it is possibly the only feature that will stop users from switching to a different pho

[android-developers] missing samples

2012-07-25 Thread Ian Knowles
Ever since the android developer site design changed a bunch of articles and information seems to have gone missing. At the moment i'm looking for some of the samples that are not downloaded by the SDK manager. Such as http://developer.android.com/resources/samples/USB/MissileLauncher/index.htm

[android-developers] Re: Eclipse Juno and Library Projects

2012-07-23 Thread Ian Warwick
OK, I just created a vanilla project and it seems to work fine, maybe its something to do with absolute references, not sure... On Monday, 23 July 2012 08:17:55 UTC+1, Ian Warwick wrote: > > Has anyone else noticed that library projects fail to link in Eclipse Juno? > > When fi

Re: [android-developers] Menu To Action Bar transition

2012-05-31 Thread giles ian
need to make. On Thu, May 31, 2012 at 5:13 PM, Mark Murphy wrote: > On Thu, May 31, 2012 at 7:38 AM, giles ian wrote: > > Hi Developers, > > > > I have an app developed for 2.2+. This app has menu options. Now on 4.X i > > get a compatibly menu button. Now after inclu

[android-developers] Menu To Action Bar transition

2012-05-31 Thread giles ian
Hi Developers, I have an app developed for 2.2+. This app has menu options. Now on 4.X i get a compatibly menu button. Now after including action bar i am not sure how the app should behave. I change my app and set targetSdkVersion to 14 with proper min version and include the support jar. Add a

[android-developers] set focus not working + show all pins on map

2012-04-18 Thread giles ian
In the below code setfocus is not working. > point = new GeoPoint((int)(18.60692*1E6), (int)(73.713276*1E6)); > overlayitem = new OverlayItem(point, "Me","Me"); > itemizedOverlayMe.addOverlay(overlayitem); > itemizedOverlayMe.setFocus(overlayitem); > mapOverlays.add(itemizedOverlayMe); Also, i

Re: [android-developers] Force Close like iPhone

2012-04-11 Thread giles ian
, TreKing wrote: > On Wed, Apr 11, 2012 at 10:00 AM, giles ian wrote: > >> What i want is when ever there is a Force close i totally want to exit >> the app ( just like iOS does) > >

[android-developers] Force Close like iPhone

2012-04-11 Thread giles ian
What i want is when ever there is a Force close i totally want to exit the app ( just like iOS does) I know im making some of the android dev angry and im also sorry for that. But is there any way to achieve that. PS: I know i can achive that by using try catch and exiting app in catch, but ill

[android-developers] Four Square Integration

2012-04-10 Thread giles ian
I followed this tutorial . I am getting: 04-08 20:55:40.044: W/System.err(5330): java.io.FileNotFoundException: https://api.foursquare.com/v2/users/self?oauth_token =CBVR2KIC

Re: [android-developers] Re: MapActivity: Couldn't get connection factory client

2012-04-05 Thread giles ian
On Thu, Apr 5, 2012 at 5:22 AM, lbendlin wrote: > >> I still get that error a lot even with a correct map key (map tiles are >> loading). Apart from the error message, do you see any negative effects in >> your app? >> >> >> On Wednesday, April 4, 2012 10:01:3

[android-developers] MapActivity: Couldn't get connection factory client

2012-04-04 Thread giles ian
After a lot of googling I findout this error id because of invalid May Key. And the reason for invalid May Key could be bad debug.keystore file. Any solutions ?? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] Execute code on app install OR where to put C2DM registration code

2012-03-15 Thread giles ian
I need to execute some code on app install event. How do i do it. After some googleing i found there is no direct way. So which is the best work around for that. What i basically want to achieve is when the user installs app i want to do C2DM Registration. I tried to achieve above thing using sh

Re: [android-developers] Duplicate Calendar Event

2012-03-14 Thread giles ian
projection, use Events._ID for the event id. > > > On Tue, Mar 13, 2012 at 11:47 PM, giles ian > wrote: > > Thanks Mike you your answer. > > > > Now my question is how do i check if a particular event is already > present. > > > > Basically i want a sele

Re: [android-developers] Duplicate Calendar Event

2012-03-13 Thread giles ian
r.html > > Thanks, > Mike > > On Tue, Mar 13, 2012 at 7:28 AM, giles ian wrote: > > Hi, > > > > I am using the below code for adding events. > > > > Now the issue is im able to add same event (all details same) multiple > > times. > > >

[android-developers] Duplicate Calendar Event

2012-03-13 Thread giles ian
Hi, I am using the below code for adding events. Now the issue is im able to add same event (all details same) multiple times. How to i avoid this. > public static void addToCalendar(Context ctx, final String title, > > final long dtstart, final long dtend) { > > final ContentResolver cr = ct

Re: [android-developers] Open Default Dialog Box on click of Notification item

2012-03-13 Thread giles ian
Thanks Mark On Tue, Mar 13, 2012 at 5:36 PM, Mark Murphy wrote: > On Tue, Mar 13, 2012 at 8:02 AM, giles ian wrote: > > Is there a direct way to open a dialog box on click of Notification item > by > > passing it to pending intent. > > No, only an Activity can open a tru

[android-developers] Open Default Dialog Box on click of Notification item

2012-03-13 Thread giles ian
Hi All, Is there a direct way to open a dialog box on click of Notification item by passing it to pending intent. Is there a better way than this (link) or setting dialog theme of activity. -- Yo

Re: [android-developers] Re: App Design Issue

2012-02-17 Thread giles ian
> if your web service data is xml file use saxParser. ( android sax > parser) > > Moktarul anam > > > > On Feb 17, 12:09 pm, giles ian wrote: > > Hi, > > > > I have 2 activities A & B. Both display data fetched from 2 different web > > service lets

[android-developers] App Design Issue

2012-02-16 Thread giles ian
Hi, I have 2 activities A & B. Both display data fetched from 2 different web service lets say ws1 and ws2 When i click on a button on Activity A i call ws2 in that avtivity itself and show loading dialog there itself and then move to Activity B and display data.(In this case i have to save lot o

[android-developers] Re: Toast not working on honeycomb and ics

2012-02-15 Thread giles ian
FYI working on Galaxy S 2.2 but not on galaxy tab 10.1" 3.2 and Nexus S 4.0.3 On Wed, Feb 15, 2012 at 2:13 PM, giles ian wrote: > Hi, > > The below piece of code is working fine on 2.2&2.3 but not on 3.0 onwards. > > Toast.makeText(SomeActivity.this, &g

[android-developers] Toast not working on honeycomb and ics

2012-02-15 Thread giles ian
Hi, The below piece of code is working fine on 2.2&2.3 but not on 3.0 onwards. Toast.makeText(SomeActivity.this, getResources().getString(R.string.not_implemented), Toast.LENGTH_SHORT).show(); Thanks, Pawan Nimje -- You received this message because you are subscribed to the Google Groups "And

Re: [android-developers] How to run 4" optimised app on a portion of galaxy tab 10.1"

2012-02-14 Thread giles ian
:( .. any future plans ?? .. btw it was great to hear from you Dianne Hackborn On Wed, Feb 15, 2012 at 3:11 AM, Dianne Hackborn wrote: > Sorry, you can't. > > On Tue, Feb 14, 2012 at 1:04 AM, giles ian wrote: > >> Hi, >> >> I have developed an app optimised

[android-developers] How to run 4" optimised app on a portion of galaxy tab 10.1"

2012-02-14 Thread giles ian
Hi, I have developed an app optimised for 4" inch (480X800) Now how can i run this on a portion of a galaxy tab 10.1" screen. Is that possible, if yes what needs to be done. Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Re: Please guide me how to send data(datastream, not files) from a PC to a real android phone via USB.

2012-02-13 Thread Ian Ni-Lewis
Shouldn't the device be binding to port 10086 in your example? -- 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 android-de

Re: [android-developers] Re: Why are new apps not featured on Android market anymore?

2012-02-13 Thread Ian Ni-Lewis
o often that any new app would be lucky to get even a couple of extra hits out of it. That's not to say that Android Market shouldn't have a better way of uncovering diamonds in the rough, just that it's a much harder problem than it used to be. Ian -- You received this messag

Re: [android-developers] gamepad events in InputEvent onKeyDown event

2012-02-13 Thread Ian Ni-Lewis
Since this thread is still the top result returned if you search d.a.c for "gamepad," I thought I'd make a quick update. USB gamepads are supported on Android 3.1 and above via new additions to android.view.InputDevice. InputDevice can now report input events for analog axes, and there are some

Re: [android-developers] Re: Why are new apps not featured on Android market anymore?

2012-02-13 Thread Ian Ni-Lewis
Do ask via market.android.com/support, and be very specific about what you're seeing. If you can provide screenshots showing at least several days' worth of incorrect behavior, that would help. -- You received this message because you are subscribed to the Google Groups "Android Developers" gr

Re: [android-developers] Java code for xml arrtibute

2012-01-23 Thread giles ian
no android:button attribute on RadioButton. Simply delete it. > > On Mon, Jan 23, 2012 at 9:23 AM, giles ian wrote: > > Hello, > > > > I have below code in xml. > > > > > android:layout_margin="5dip" > > android:layout_width="

[android-developers] Java code for xml arrtibute

2012-01-23 Thread giles ian
Hello, I have below code in xml. I need java code for highlighted text as I'm creating radio buttons programmatically. -- 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.

Re: [android-developers] Re: How to route sound to the speaker, even if phones are plugged in?

2012-01-06 Thread giles ian
its the second one On Fri, Jan 6, 2012 at 4:27 PM, Terry wrote: > Since I have had no responses on this request so far, I guess that > either the solution is so simple that noone bothers to reply, or that > noone knows. Which is it? > > Terry > > > On 4 Jan, 08:24, Terry wrote: > > I seem to be

[android-developers] Best encryption method?

2012-01-06 Thread giles ian
Hello, Which is the best encryption method. My need is to encrypt data and store it in DB. Which would be the best among: 1. Base 64 2. AES 3. 3 DES 4. MD - 5 in terms of: 1. Security 2. Performance 3. Easy of implementation -- You received this message because you are subscribed to the Go

Re: [android-developers] Remote wipe SD card Invocation Event

2011-12-12 Thread giles ian
Thanks All for your suggestions and help On Fri, Dec 9, 2011 at 9:10 PM, Erwann Abalea wrote: > > Le vendredi 9 décembre 2011 15:24:55 UTC+1, lbendlin a écrit : > >> There are a couple of technical difficulties. First of all the phone is >> likely too heavy for the AC. Then, even if we assume th

Re: [android-developers] How to "Remote wipe SD card"

2011-12-09 Thread giles ian
On Fri, Dec 9, 2011 at 1:14 PM, giles ian wrote: > haha u are funny daniel, > > ok so, > > I want to remote wipe data on sd card. I know the code of wiping the data > on SD card. What I am struggling with is how to invoke this code remotely. > > Options that i have is &g

[android-developers] Re: Remote wipe SD card Invocation Event

2011-12-09 Thread giles ian
On Fri, Dec 9, 2011 at 1:13 PM, giles ian wrote: > Hi Everyone, > > I want to remote wipe data on sd card. I know the code of wiping the data > on SD card. What I am struggling with is how to invoke this code remotely. > > Options that i have is > > *1. Bro

Re: [android-developers] How to "Remote wipe SD card"

2011-12-08 Thread giles ian
zew...@gmail.com> wrote: > On 8 December 2011 11:19, giles ian wrote: > > Hi All, > > > > How to "Remote wipe SD card" > > You cannot be serious... > > In case you are, here is the answer: > > With a soft antistatic cloth attached to a stick? > >

[android-developers] Remote wipe SD card Invocation Event

2011-12-08 Thread giles ian
Hi Everyone, I want to remote wipe data on sd card. I know the code of wiping the data on SD card. What I am struggling with is how to invoke this code remotely. Options that i have is *1. Broadcast receiver for SMS.* Shortcoming: SIM Card removed immediately. *3. **Broadcast receiver for **C

  1   2   3   >