[android-developers] Re: How can I get notified when the server has closed the TCP connection

2013-04-03 Thread Piren
Yes, that is what i meant... Otherwise, nothing much you can do about this. On Tuesday, April 2, 2013 6:53:25 PM UTC+3, plnelson wrote: Just to clarify- when you say add another command, do you mean add a command to the PC to send to the Android device that it's closing?That would be

[android-developers] Webview

2013-04-03 Thread Arun Kumar K
Hi, How to display the JSP page in webview i m having the jsp page in my local host how can i display -- *Thanks Regards* *K.Arun Kumar* -- -- 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] Webview

2013-04-03 Thread Roland Mueller
Hello, JSP is a server-side technology. What is arriving to the HTTP client - regardsless it's an Android device using webview or something else - is the normal HTML documents. Thus, to display the JSP page you have to direct the client to the same URL as any other browser. BR, Roland

Re: [android-developers] AIDL

2013-04-03 Thread vaibs malviya
Thanks for reply *krismicinski* On Tue, Apr 2, 2013 at 7:44 PM, Kristopher Micinski krismicin...@gmail.comwrote: You use AIDL when you have two distinct Android threads communicating. Even the most basic messaging primitives are built on top of this (in favor of UNIX IPC), such as

Re: [android-developers] New app doesnt show in Google Play

2013-04-03 Thread bergstr
and, to finalize: this is a bug in Google Play. the behavior of all stores should be the same, and if a declaration is invalid, there should be some way to find out (like some specific error message in dev. environment or console) other than trial and error Am Dienstag, 2. April 2013 21:37:15

[android-developers] android device management with oma dm standards..

2013-04-03 Thread Ashish Sharma
Hi, oma dm is a standard that is used to manage the device and most of the manufacter provide the in built client for this. e.g if we send the message having oma dm message format then device process the message and we can change the apn of the device. my problem is that i want to lock the

[android-developers] Why does Android sometimes post-fix a application's package name at installation?

2013-04-03 Thread aslater
Hi all, Apologies for the cross post as i've recently raised this issue the android-ndk group but raising again as someone here may know the answer. I'm having a problem when using *vs-android*https://code.google.com/p/vs-android/ to build an Android native application using a

[android-developers] Re: duplicate calls to onSurfaceChanged() weirdness (again)

2013-04-03 Thread Cleuton Sampaio
Yes, I have the same problem. onSurfaceChanged() is being called twice. Em quinta-feira, 12 de abril de 2012 12h57min35s UTC-3, Latimerius escreveu: Hello, googling for the following problem got me a lot of hits where people ask or rant about this but no actual explanation so I figured I'll

[android-developers] reusing AsyncTaskLoader with always fresh data

2013-04-03 Thread Ralph Bergmann | the4thFloor.eu
Hello, I wont to reuse my AsyncTaskLoader. To do it I call: LoaderResult loader = getLoaderManager().initLoader(0, args, this); loader.startLoading(); In this startLoading method is a if-statment: if (info.mHaveData mStarted) { // If the loader has already generated its data, report it

[android-developers] Re: New app doesnt show in Google Play

2013-04-03 Thread ankit the OPIUM
If you are making multiple same tags in xml file it will take only first tag and behave same. This is applicable for development also. just give it a try give intent-filter action android:name=android.intent.action.MAIN / category

[android-developers] Re: Monthly Payout Reports late... and missing 50% of entries

2013-04-03 Thread Pent
This is getting ridiculous. I'm going to be fined by my tax authority in a few days for not being able to submit tax data. Pent -- -- 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] Re: reusing AsyncTaskLoader with always fresh data

2013-04-03 Thread Streets Of Boston
The call to getLoaderManager().initLoader(0, args, this); is enough to have your Loader run at least the first time it is created. Do *not *call 'startLoading()'. If you want to refresh your Loader's data call getLoaderManager().*restart*Loader(0, args, this); When initLoader or

[android-developers] free trial for a one time purchase with in app v3

2013-04-03 Thread Fabien R
Hello, I would like to propose a free trial period for an app. I saw in the dev console that it was only possible for subscriptions. Unfortunately, there is no one time only option for subscription. Thus, if the user buys the app, (s)he would be charged every month or year. What alternatives do I

[android-developers] Re: Monthly Payout Reports late... and missing 50% of entries

2013-04-03 Thread bob
What country are you in? Thanks. On Wednesday, April 3, 2013 8:36:38 AM UTC-5, Pent wrote: This is getting ridiculous. I'm going to be fined by my tax authority in a few days for not being able to submit tax data. Pent -- -- You received this message because you are

Re: [android-developers] Thoughts on the AQuery library?

2013-04-03 Thread gloesch
I ended up ditching the library. I ran into an issue where every once in awhile, the callback would never get called. I switched to my own custom wrapping AsyncTask wrapper. Also it seems that http://loopj.com/android-async-http/ would have been a better choice. On Thursday, January 17, 2013

[android-developers] Re: duplicate calls to onSurfaceChanged() weirdness (again)

2013-04-03 Thread bob
What non-idempotent code would you have had in onSurfaceChanged()? I would expect it all to be idempotent. Thanks. On Friday, April 13, 2012 8:56:18 AM UTC-5, Latimerius wrote: Okay, if nobody has an answer or explanation, I will hope that moving non-idempotent code out of

Re: [android-developers] Re: reusing AsyncTaskLoader with always fresh data

2013-04-03 Thread Ralph Bergmann | the4thFloor.eu
Am 03.04.13 15:37, schrieb Streets Of Boston: The call to getLoaderManager().initLoader(0, args, this); is enough to have your Loader run at least the first time it is created. Do *not *call 'startLoading()'. yeah... reading helps :-) startLoading() This function will normally be called

[android-developers] Re: two activities running at same time

2013-04-03 Thread g...@deanblakely.com
Since I started this thread I thought I would post a follow up now that I have finished and published the app. My app is a broadcast listener that kicks off on receipt of an SMS message. Under the right conditions it launches an activity that runs for 30 seconds getting reading from a

[android-developers] Parallel download images from different fragment

2013-04-03 Thread Danny D
I generally don't prefer loading images directly from the Fragment/Activity, because I typically use the images multiple places throughout the app and don't want the user to pay for the same data twice. General solution: setup a Singleton image cache like described in the docs, along with an

[android-developers] Re: duplicate calls to onSurfaceChanged() weirdness (again)

2013-04-03 Thread RichardC
Just ignore it if the parameter values are the same. If they are different then re-set your viewport. If all you are doing is setting the viewport then just do it twice. If you are doing anything else why? On Thursday, April 12, 2012 4:57:35 PM UTC+1, Latimerius wrote: Hello,

[android-developers] Re: New app doesnt show in Google Play

2013-04-03 Thread bergstr
as I posted earlier, the uses-permission element can be repeated, and all will be used, as in uses-permission android:name=android.permission.INTERNET / uses-permission android:name=android.permission.ACCESS_WIFI_STATE / uses-permission

[android-developers] Re: Application Crash

2013-04-03 Thread TWProgrammers
A... I see my mistake. I am creating 2 apps that work together... Thanks! On Tuesday, April 2, 2013 6:57:32 PM UTC-5, RichardC wrote: Error is: Unable to instantiate receiver com.TWP.Project.TDC.SMSReceive Source package is: com.TWP.Project.IES Source class is: SMSReceiver

[android-developers] SmsManager crashes app

2013-04-03 Thread TWProgrammers
I am trying to send a very long SMS message using SmsManager but when it hits that line it either crashes or throws a general error. Here is my code: private void execute(String phone) { PendingIntent sent = PendingIntent.getBroadcast(this, 0, new Intent(SMS_SENT), 0);

Re: [android-developers] free trial for a one time purchase with in app v3

2013-04-03 Thread Michael Banzon
You could make a free version and a paid version - two separate apps. Either they could be two different or one could unlock the full potential of the other. On Wed, Apr 3, 2013 at 4:21 PM, Fabien R theedge...@free.fr wrote: Hello, I would like to propose a free trial period for an app. I saw

[android-developers] Overriding styles in different values files

2013-04-03 Thread Richard Thompson
Hi, I'm using the new fontFamily attribute so that I can control the weight of font used. Because this was only introduced in API level 16 I've created a styles file in values-v16. It seems a bit silly to declare the colour, size etc in both values and values-v16 but it is necessary for all

[android-developers] Re: New app doesnt show in Google Play

2013-04-03 Thread bob
His first tag was this: *supports-screens android:smallScreens=false/* If it took only the first tag, I would expect it to ban only small screens. That's not what it was doing. Thanks. On Wednesday, April 3, 2013 8:18:45 AM UTC-5, ankit the OPIUM wrote: If you are making multiple

[android-developers] Home app selection query

2013-04-03 Thread Tobiah
I am using a modified home app from the sdk samples directory. It's goal in life is to launch one app for a kiosk style device. When I first run it, I have to choose my home app over the regular one. I can do this as many times as I like; when I choose my home app, it launches my kiosk app. The

[android-developers] Push Notification

2013-04-03 Thread ankit agarwal
I am implementing GCM push notification for my application. I am using two different email id to register for API_KEY and developer console.Will this work? -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Offline maps

2013-04-03 Thread gjs
Hi Android maps api v2 supports alternate map tiles Regards -- -- 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