[android-developers] aptoide piracy

2013-01-31 Thread Andrea Pietroni
Hi all, this might be OT as it's not programming related, however, have you ever tried to have aptoide remove your pirated app? Did you succeed? how long did you have to wait (without answers, let alone app removal)? Thank you, Andrea -- -- You received this message because you are

[android-developers] Re: aptoide piracy

2013-01-31 Thread Andrea Pietroni
I can finally answer for myself: 2 days (with email solicitation?) and hundreds of downloads :( Il giorno giovedì 31 gennaio 2013 12:38:58 UTC+1, Andrea Pietroni ha scritto: Hi all, this might be OT as it's not programming related, however, have you ever tried to have aptoide remove your

[android-developers] random Resource$NotFoundException reports

2012-11-08 Thread Andrea Pietroni
Hi all, I have published an app (with ACRA for crash reporting) which results in some random crashes due to resources not found. The app of course works here and for many customers. I thought it could be because of some particular configurations without a default, but it happened also with a

[android-developers] Re: plz assign me any application i m free now a days !!!

2012-09-14 Thread Andrea Pietroni
Good suggestion, I wonder why Google doesn't have one. Il giorno venerdì 14 settembre 2012 17:32:23 UTC+2, bob ha scritto: Make an Android tablet interface to Google Groups. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Explain the goemetrial concept behind this, please!!

2012-09-14 Thread Andrea Pietroni
Negative scale numbers mirror the image. It looks like it's drawing the picture (half scaled) 4 times: - first time top left - then at its right and mirroring accordingly - etc -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] in-app billing is possible through Paypal A/c.

2012-09-13 Thread Andrea Pietroni
Google for: android paypal api OR library For very lazy people, first two results: https://www.x.com/developers/paypal/products/mobile-payment-libraries https://cms.paypal.com/cms_content/US/en_US/files/developer/PP_MPL_Developer_Guide_and_Reference_Android.pdf -- You received this message

[android-developers] Explain the goemetrial concept behind this, please!!

2012-09-13 Thread Andrea Pietroni
Negative scale numbers mirror the image. It looks like it's drawing the picture half scaled 4 times: - first time at top left - then at its right, mirroring accordingly - etc -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Eclipse, ProGuard and Build automatically

2012-09-06 Thread Andrea Pietroni
Hi all, I'm using for the first time ProGuard, and I'm facing a strange situation where, with Build Automatically enabled, exporting the signed app package causes the final apk to miss some classes from the project. Randomly (for what I can see) ProGuard complains about missing referenced

[android-developers] Re: ListFragment or ListView preview in Layout Editor

2012-08-31 Thread Andrea Pietroni
and here the answer from Tor Norbye: http://stackoverflow.com/a/12188118/503900 Il giorno mercoledì 29 agosto 2012 12:28:42 UTC+2, Andrea Pietroni ha scritto: I'm offering a bounty on the questionhttp://stackoverflow.com/questions/12140027/listfragment-or-listview-preview-in-layout-editoron

Re: [android-developers] Re: AsyncTask - onPostExecute is not called

2012-08-30 Thread Andrea Pietroni
if you're not going to support versions before Gingerbread, try switching to HttpURLConnection, see this: http://android-developers.blogspot.it/2011/09/androids-http-clients.html I'm not experienced with networking, but does HttpClient need to be closed some way? could that be the problem? --

Re: [android-developers] Re: AsyncTask - onPostExecute is not called

2012-08-30 Thread Andrea Pietroni
also, try AndroidHttpClient.newInstance() instead of a plain DefaultHttpClient (this try could be easier to do before HttpURLConection). -- 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] AsyncTask - onPostExecute is not called

2012-08-29 Thread Andrea Pietroni
are you executing the task from the main (UI) thread? otherwise onPostExecute won't get called. also, why there's one URL serviço log but two RESPOSTA do web service? Il giorno martedì 28 agosto 2012 21:51:53 UTC+2, anaOliveira ha scritto: As you can see on the picture.. I have all the

[android-developers] ListFragment or ListView preview in Layout Editor

2012-08-29 Thread Andrea Pietroni
Hello, it's my first post in the group. I'm trying to preview a ListFragment in the Graphical Layout Editor. As it has no fragment layout to preview, I simply created an xml with a ListViewinside, just to see how the items look, and set *Preview List Content* with one of the default item

[android-developers] Re: ListFragment or ListView preview in Layout Editor

2012-08-29 Thread Andrea Pietroni
I'm offering a bounty on the questionhttp://stackoverflow.com/questions/12140027/listfragment-or-listview-preview-in-layout-editoron SO. Il giorno martedì 28 agosto 2012 18:59:21 UTC+2, Andrea Pietroni ha scritto: Hello, it's my first post in the group. I'm trying to preview a ListFragment

Re: [android-developers] Re: AsyncTask - onPostExecute is not called

2012-08-29 Thread Andrea Pietroni
Yesterday I tried running the asynctask in onCreate in an activity, to test it. I used a URL from web that I knew was available. Actually I always got UnknownHostException and I don't know why, however onPostExecute got called correctly, except the first time, when it looked like it had to wait