[android-developers] Re: Automatic silent update for corporative app

2012-04-13 Thread AlexD
You will still want to find out what happens when you attempt an update while the application is running. There are internal detailed logging in app. Every step will be written in file. Kostya, big-big thanks for so detailed answer. I think that dialog with vendor is better way in this

[android-developers] i want to put restriction on an application for particular MAC address of mobile. how???

2012-04-13 Thread Muhammad Sahil
hi, I want to restrict my application for some security reason. So 1) How can i get the MAC address of my mobile. 2) How can i apply restriction for this MAC address to use my application. I hope someone provide me good answer. I am waiting for your kind help, Thanks and Regards, Sahil.

Re: [android-developers] Local Bound Service vs a static Reference

2012-04-13 Thread Lindsay Mathieson
On 13 April 2012 02:05, TreKing treking...@gmail.com wrote: The system can kill your Service instance at any time if it needs memory, which would suck quite bad if you had a global reference to it. But if you bind to it, via the provided API, it tells the system hey, I'm using this thingy,

Re: [android-developers] Local Bound Service vs a static Reference

2012-04-13 Thread Lindsay Mathieson
2012/4/13 Kostya Vasilyev kmans...@gmail.com Using binding with a local service has, as far as I'm concerned, two benefits: 1) Provides a way to know when the service has actually been started, since it happens asynchronously wrt. startService 2) Is somewhat cleaner. True, and I've gone

[android-developers] Re: Task switcher image

2012-04-13 Thread Zsolt Vasvari
AFAIK, you cannot. This is also a security issue as you may expose sensitive information via the automatic screen shot. On Friday, April 13, 2012 8:58:14 AM UTC+8, Brett wrote: In ICS especially, there is a new was to switch tasks like the old way of holding down the home key. Now you see

Re: [android-developers] Re: Directly accessing the e-mail app.

2012-04-13 Thread Christer Nordvik
Try this magic code: Intent i = *new* Intent(android.content.Intent.ACTION_SEND); //i.setType(text/plain); //use this line for testing in the emulator i.setType(message/rfc822) ; // use from live device* i.putExtra(Intent.EXTRA_SUBJECT, Subject of this great email);

[android-developers] tablet is hang due to full internal storage memory

2012-04-13 Thread priya abc
Hello, I run application from eclipse .it installed directly on tablet internal memory storage.that` why it memory is almost full. Then I am trying to uninstall it but it is not removing. So i just power off the tablet and did power on..but it is not going into home screen ...it showing only

[android-developers] How to convert android layout file to pdf format...

2012-04-13 Thread parthi
my project :once user click submit button tat file ill convert to pdf format using android ... help me -- 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

[android-developers] How can i Recognize exact speech in android application

2012-04-13 Thread Umesh R
i am trying to build an application which should recognize exact speech with google server. but when i am speaking it is not showing exact result... can anyone suggest what else to do.. i have used ... code... Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);

[android-developers] DeviceOrientation API can't get right data from Orientation Sensor

2012-04-13 Thread dj
hi, all DeviceOrientation API has been impremented in Android 4.0. But i can't use javascript to get right data form Orientation Senor. Accelerometer Sensor and MagneticField Sensor are registered in DeviceOrientationService.java when i addEventListener deviceorientation event, so I think the data

[android-developers] Android Emulator not connecting to internet even though there is internet connection on computer

2012-04-13 Thread RAJESH RAJARAM
Hi, Android Emulator not connecting to internet even though there is internet connection on computer. I done all the things that 1. setting-wirelesssettings--proxy and port. But still i have the same problem. last one week i'm searching for the solution can plz anyone solve my problem

[android-developers] What qualifies an Android phone to show up in Android Marketplace filter

2012-04-13 Thread ToniL
Could somebody tell me what makes a device qualify to show up in Android Marketplace filter when you upload an apk? Do they have to be CTS certified only or it needs to meet other criterias? I tailored the Manifest files to accepts any devices with normal, large and xlarge screen sizes and low,

[android-developers] Moving an image using accelerometer in android

2012-04-13 Thread kumar varma
Hi All, In my app I need to move the image using accelerometer (sensor) in android.If anyone can help me with this will be very helpful as I am struggling to understand how this is done. Thanks, KumarVarma. -- You received this message because you are subscribed to the Google

[android-developers] Unknown Android Packaging Problem: java.lang.ArrayIndexOutOfBoundsException: 13

2012-04-13 Thread Rohit Lagu
Hi All, I have installed all latest version software in my machine ( eclipse-java-indigo-SR2-win32-x86_64, ADT V18 , Android Latest version) When i create a new android application build it all works fine. but when i try to run application in simulator i got this error Description

[android-developers] Media Effect artifact

2012-04-13 Thread hmohtasham
Greetings! I'm experimenting with various effects provided in the android.media.* package and I have been able to get some output; however, it seems that the processed texture (the output of the effect) is stretched to the right in a way that part of the right side of the input is not seen

[android-developers] android telephony information

2012-04-13 Thread MOHAMED HOUIJ
hello, it's been more than a week I'm looking all over the internet how to get information as BCCH, RxLev, RxQual, BSIC, RAC and neighboring CellInfo, but unfortunately I have not found any solution. with android.telephony I managed to extract the CellID, LAC, MNC etc. .. but this is not enough

[android-developers] Changing Views

2012-04-13 Thread Tim
I'm using different views within the same activity as my menu for an app I'm working on. I was wondering if there was a way to move freely between the views as needed, especially when overriding the back button. I've tried ViewSwitcher and ViewFlipper and neither of them work (or I just don't

[android-developers] Testing program on device

2012-04-13 Thread Aivaras Guobužas
Hello, I'm creating program for Android 2.3.3, but I have got device, which has Android version 4.0.3. Is it possible to build and test my program in device when I press build project button (because now it runs only in emulator, and if I delete emulator, it says device not found or smth) or I

[android-developers] Android and OpenStreetMap

2012-04-13 Thread Mishka
Hi, i want to begin a carto app and want to use android and OSM. Some one could have a tutorials about OSM API for android or something else. Regards; Mishk@ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Export relase problem with ADT 18 / SDK 18 (since update to 18 from 17)

2012-04-13 Thread xavier dev
I've 2 Android projects in workspace; first is libray project and other is application that refers to first project. When I try to export release build it gives error: Conversion to Dalvik format failed with error 1 This is happening since I move from r17 to r18. Is it a known issue ? Thanks for

[android-developers] Perform phone call at Overlay.onTap() event

2012-04-13 Thread graffiti75
Hi everyone. I would like to know if there is a way to perform a phone call inside the onTap event of a class that extends Overlay. I need this info for a project I'm working. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Detecting CellStateChangeLocation Event on a CDMA phone

2012-04-13 Thread depot team
Hi All, We need help to detect cellstatelocation change events in our app. We downloaded trackerservice.java from android developer samples site and ran it to check whether the events are detected are not. Though it works on GSM phones it didn't work on CDMA phones. Can anyone have ideas about

[android-developers] contatti rubrica

2012-04-13 Thread marco androidrarz
salve, la mia necessità è quella di salvare i contatti rubrica su più account contemporaneamente. dato che il sistema non lo permette volevo sapere se c'era magari qualche sviluppatore ha sviluppato una app che risolva questo limite. -- You received this message because you are subscribed to the

[android-developers] Re: Export relase problem with ADT 18 / SDK 18 (since update to 18 from 17)

2012-04-13 Thread Zsolt Vasvari
File a bug report on b.android.com Make sure you select Tools bug report for the tempate and put Tools R18 in the title. I can almost guarantee it will be looked at very quickly. The SDK/tool guys are very good. On Friday, April 13, 2012 3:41:28 PM UTC+8, xavier dev wrote: I've 2 Android

[android-developers] How to get the network type from the adb command line ?

2012-04-13 Thread chengdong diao
Hi , I have add a 3g module to android 2.3. and it showed a G at the top of the screen . but I remembered the 3g network will show the 3G . I don't know how to get the network type on my board. Can you tell me ? -- You received this message because you are subscribed to the Google

[android-developers] Re: where does Android store sms.

2012-04-13 Thread Meryeme
in fact I found out where does it store sms in data/data/databases/ mmssms.db thank you for your help Lin :) On Apr 11, 6:24 am, Alger Lin addr...@gmail.com wrote: You may able to query incoming SMS by content provider, refer to URL

[android-developers] Re: Need help about Play Store banned application.

2012-04-13 Thread Tolriq
This is totally insane they just ban my unlocker application ... For the exact same reason as the old paying application This unlocker is a simple application that does nothing but only it's presence is checked by the free application. The free application is still here. They just

[android-developers] Re: Query in calling SOAP based web service in Android

2012-04-13 Thread kenlion
Hi , is there any solution for this problem ?? 在 2011年1月26日星期三UTC+8下午9时17分56秒,Nandlal Viranni写道: Hi All , I am new to Android . I am developing one application . In which , i need to use SOAP based web service. but i am not able to do this task . I need to pass class object as

[android-developers] Re: Media Effect artifact

2012-04-13 Thread hmohtasham
Oh, I forgot to mention that the app occasionally crashes with the following error: 04-13 09:10:33.890: E/AndroidRuntime(17201): FATAL EXCEPTION: GLThread 2351 04-13 09:10:33.890: E/AndroidRuntime(17201): java.lang.RuntimeException: Applying effect in wrong GL context! 04-13 09:10:33.890:

Re: [android-developers] Android and OpenStreetMap

2012-04-13 Thread Mark Murphy
http://code.google.com/p/osmdroid/ On Thu, Apr 12, 2012 at 9:59 PM, Mishka misam...@gmail.com wrote: Hi, i want to begin a carto app and want to use android and OSM. Some one could have a tutorials about OSM API for android or something else. Regards; Mishk@ -- You received this

Re: [android-developers] Perform phone call at Overlay.onTap() event

2012-04-13 Thread Mark Murphy
Call startActivity() with an ACTION_DIAL or ACTION_CALL Intent on a tel: Uri (tel:N, where N is your phone number). On Thu, Apr 12, 2012 at 10:04 AM, graffiti75 graffit...@gmail.com wrote: Hi everyone. I would like to know if there is a way to perform a phone call inside the

Re: [android-developers] Testing program on device

2012-04-13 Thread Mark Murphy
http://developer.android.com/guide/developing/device.html#setting-up 2012/4/12 Aivaras Guobužas aivara...@gmail.com: Hello, I'm creating program for Android 2.3.3, but I have got device, which has Android version 4.0.3. Is it possible to build and test my program in device when I press build

Re: [android-developers] Re: Directly accessing the e-mail app.

2012-04-13 Thread Mark Murphy
On Fri, Apr 13, 2012 at 1:43 AM, Put_tiMe putt...@gmail.com wrote: I'm looking at this: if com.android.email package exists, then I want to open the compose activity, and automatically fill up the fields, such as 'to', 'subject', etc... If the default mail package doesn't exist, then I don't

[android-developers] How to integrate Google maps and Facebook page and Twitter in android apps.

2012-04-13 Thread Yogeshkumar Tiwari
Hi Everybody, I'm developing android Restaurant apps for my client in that i have to show store locator that means location of my clients Restaurants in Google maps and share button for Facebook and Twitter button for tweet. so please any one can help me how to integrate

[android-developers] Re: question about blending bitmaps (Porterduff? matrix?)

2012-04-13 Thread Jim Graham
Adding to the original question: along with which is the best method for results, add to that the need to minimize usage of memory. I am, of course, recycling all bitmaps one line after I'm finished with them (there aren't many, but they are quite large). I really want to give the user the full

Re: [android-developers] How to integrate Google maps and Facebook page and Twitter in android apps.

2012-04-13 Thread Chandra Sekhar
Go through the Facebook site or see the following link to integrate facebook to our android apps http://developers.facebook.com/docs/mobile/android/build/ and for sample app for Facebook(Hackbook in github) http://developers.facebook.com/docs/mobile/android/hackbook/

[android-developers] Layout selector to switch to tablet layout?!

2012-04-13 Thread kodlan
Hi! This drives me nuts. I'm developing application where I need to provide both tablet layout and simpler layout for phones. I'm targeting 4.0. After reading this http://developer.android.com/guide/practices/screens_support.html#DeclaringTabletLayouts I'm totally lost how that should be done.

Re: [android-developers] Unknown Android Packaging Problem: java.lang.ArrayIndexOutOfBoundsException: 13

2012-04-13 Thread mike digioia
this is the third issue like this related to the latest eclipse/android tools. I suspect some problems exists with the latest release. maybe someone supporting these new releases will let us know what the issue is. I see you are using windows on a 64 bit machine. On Thu, Apr 12, 2012 at 11:30 AM,

Re: [android-developers] Re: XML layout and Views

2012-04-13 Thread yyyogev
Thanks, I think this is what I need but I'm having implement it. Do you have by any chance an 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

Re:: [android-developers] Layout selector to switch to tablet layout?!

2012-04-13 Thread Kostya Vasilyev
The nexus screen is only about half as wide and half as tall add that on the Xoom, if measured in device independent units. Base your layout switching on dp sizes and you'll be fine. 13.04.2012 17:13 пользователь kodlan kod...@gmail.com написал: Hi! This drives me nuts. I'm developing

Re: [android-developers] Layout selector to switch to tablet layout?!

2012-04-13 Thread Mark Murphy
On Fri, Apr 13, 2012 at 9:12 AM, kodlan kod...@gmail.com wrote: This drives me nuts. I'm developing application where I need to provide both tablet layout and simpler layout for phones. I'm targeting 4.0. After reading this

Re: [android-developers] Re: Directly accessing the e-mail app.

2012-04-13 Thread TreKing
On Fri, Apr 13, 2012 at 12:43 AM, Put_tiMe putt...@gmail.com wrote: The reason I want to do this is: I know I want to send an e-mail. I don't want the user to choose 'bluetooth'. Because I know I don't want to use the 'bluetooth'. The beauty of Android is that if you set up your Intent

[android-developers] Regarding Audio effects in Android ICS

2012-04-13 Thread Shashi Kumar
Hi, In Android phone (ICS version) the testing scenario is below: 1. Install “Music2.apk” (Google Music application) 2. Play an mp3 clip. 3. Menu - Sound effects 4. Turn on “Equalizer”/Any sound effect 5. Return to playback screen. 6. Go to next clip or

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

2012-04-13 Thread Latimerius
Okay, if nobody has an answer or explanation, I will hope that moving non-idempotent code out of onSurfaceChanged() and ignoring the first onDrawFrame() is enough to work around this bug. On Thu, Apr 12, 2012 at 5:57 PM, Latimerius l4t1m3r...@googlemail.com wrote: Hello, googling for the

Re: [android-developers] Re: Google's 1099-K

2012-04-13 Thread TreKing
On Fri, Apr 13, 2012 at 12:26 AM, Zsolt Vasvari zvasv...@gmail.com wrote: That makes sense that the commission is an expense, but is it not for Amazon? Amazon is also sending a 1099-MISC as opposed to a 1099-K. This is my guess: with Google you're on your own. You're using Checkout or Wallet

Re: [android-developers] Re: XML layout and Views

2012-04-13 Thread Justin Anderson
Look at ANY of the Android samples that use an XML layout... This is pretty basic stuff. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Apr 13, 2012 at 7:21 AM, yyyogev yyyo...@gmail.com wrote: Thanks, I think this is what I need but I'm having

Re: [android-developers] Changing Views

2012-04-13 Thread Justin Anderson
I've tried ViewSwitcher and ViewFlipper and neither of them work (or I just don't understand how to get them to work like I want). What doesn't work about that? What have you tried? I've used both of them extensively and have never had any problems. Is there a way to do this, or will I be

Re: [android-developers] Layout selector to switch to tablet layout?!

2012-04-13 Thread Kostya Vasilyev
FWIW, the built-in apps use 600dp as the switchover point. Modern 7 tablets are typically 1024x600 pix/dp but they aren't -xlarge (it being at least 960dp x 720dp). -- K 13.04.2012 17:27, Mark Murphy написал: The screen size for the Galaxy Nexus is 320dp x 640dp. The screen size for the

[android-developers] Re: ShapeDrawable and setImageMatrix on ICS

2012-04-13 Thread Martin Bruse
Wonderful! That did the trick. Thank you! On Apr 10, 1:39 am, Romain Guy romain...@android.com wrote: Hi, This happens when hardware acceleration is turned on. You can disable hardware acceleration for this view if you wish using View.setLayerType(). On Sat, Apr 7, 2012 at 5:26

Re: [android-developers] Re: XML layout and Views

2012-04-13 Thread yyyogev
It works! Thanks for all the help. -- 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] Unknown Android Packaging Problem: java.lang.ArrayIndexOutOfBoundsException: 13

2012-04-13 Thread Rohit Lagu
Yes. I have purchase new laptop i am unable to code :( Anyone please give me update. Thanks On Friday, April 13, 2012 6:47:59 PM UTC+5:30, mpd wrote: this is the third issue like this related to the latest eclipse/android tools. I suspect some problems exists with the latest release.

Re: [android-developers] tablet is hang due to full internal storage memory

2012-04-13 Thread TreKing
On Thu, Apr 12, 2012 at 10:50 PM, priya abc priab...@gmail.com wrote: Now What should i do? Contact tech support for your carrier and / or manufacturer. - TreKing

[android-developers] Re: Google's 1099-K

2012-04-13 Thread niko20
I have never received any form from Google, and I've made WELL into the thousands. -niko On Apr 13, 8:58 am, TreKing treking...@gmail.com wrote: On Fri, Apr 13, 2012 at 12:26 AM, Zsolt Vasvari zvasv...@gmail.com wrote: That makes sense that the commission is an expense, but is it not for

[android-developers] Re: Google's 1099-K

2012-04-13 Thread niko20
I'm wondering if maybe this form is only sent for apps with ads or something. I don't have such apps, only paid. And I have never received such a form and been on the market since early 2009. -niko On Apr 13, 8:58 am, TreKing treking...@gmail.com wrote: On Fri, Apr 13, 2012 at 12:26 AM, Zsolt

Re: [android-developers] Moving an image using accelerometer in android

2012-04-13 Thread TreKing
On Thu, Apr 12, 2012 at 8:10 AM, kumar varma kkvarm...@gmail.com wrote: In my app I need to move the image using accelerometer (sensor) in android.If anyone can help me with this will be very helpful as I am struggling to understand how this is done. 1. Read the documentation,

Re: [android-developers] How to convert android layout file to pdf format...

2012-04-13 Thread TreKing
On Thu, Apr 12, 2012 at 4:40 AM, parthi parthisof...@gmail.com wrote: my project :once user click submit button tat file ill convert to pdf format using android ... help me http://www.catb.org/~esr/faqs/smart-questions.html

[android-developers] Re: Google's 1099-K

2012-04-13 Thread niko20
One last thing. Google's numbers have *never* made sense, so I just used the payouts for each month and added them up, I mean literally the amount of money that was sent to my checking account. If the IRS wanted to do an audit, that's the number they would finally end up with. If anything, that

Re: [android-developers] Getting GPS Coordinates From Postal Address

2012-04-13 Thread TreKing
On Fri, Apr 13, 2012 at 8:07 AM, usafrmajor usafrma...@gmail.com wrote: Is there a way to get the GPS coordinates from a postal address (street, city, state, zip)? http://developer.android.com/reference/android/location/Geocoder.html#getFromLocationName(java.lang.String, int)

Re: [android-developers] Getting GPS Coordinates From Postal Address

2012-04-13 Thread usafrmajor
I saw this but near as I can tell it does not return the latitude and longitude of the addresses returned. If I am mistaken can you show me how I code for it--just the part where I can assign the latitude and longitude values to local variables. My goal is to create a function that will allow

Re: [android-developers] Getting GPS Coordinates From Postal Address

2012-04-13 Thread TreKing
On Fri, Apr 13, 2012 at 12:22 PM, usafrmajor usafrma...@gmail.com wrote: I saw this but near as I can tell it does not return the latitude and longitude of the addresses returned. It returns a list of Address objects. If you look at the docs for that class, it has latitude and longitude.

Re: [android-developers] tablet is hang due to full internal storage memory

2012-04-13 Thread Dianne Hackborn
The base Android platform is verified for each release to be able to boot with a full data partition and run enough that you can go to settings and remove files to find space. If this is not working on your device, your manufacturer has likely broken something. On Thu, Apr 12, 2012 at 8:50 PM,

[android-developers] Re: i want to put restriction on an application for particular MAC address of mobile. how???

2012-04-13 Thread lbendlin
1) This will only work when the WiFi is actually powered. This may not be guaranteed in your case (if the user is connecting via 3G etc) final WifiManager wm = (WifiManager) (getApplication().getSystemService(Context.WIFI_SERVICE)); final WifiInfo wi = wm.getConnectionInfo();

Re: [android-developers] i want to put restriction on an application for particular MAC address of mobile. how???

2012-04-13 Thread Kristopher Micinski
What... This doesn't make any sense... What are you trying to do... I can say with high certainty that the SDK probably will not support what you want to do.. kris On Fri, Apr 13, 2012 at 2:33 AM, Muhammad Sahil muhammad.sahi...@gmail.com wrote: hi,    I want to restrict my application for

Re: [android-developers] Re: Write storage on Samsung Galaxy Tab 7.7

2012-04-13 Thread Nathan
On Thursday, April 12, 2012 10:22:57 PM UTC-7, Zsolt Vasvari wrote: I think you just need to stop calling the SD Card and call it External storage or something. It's really irrelevant what *I* call it. I can't control what the users call it, or even what the manufacturers call it.

[android-developers] Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Deepwinter
I'm launching a new activity with startActivity(intent), an activity which I have verified to launch successfully when I call startActivity from onCreate of another activity. However when I launch the activity later in the program (where it should be launched), I just get a black screen. I get

Re: [android-developers] Re: i want to put restriction on an application for particular MAC address of mobile. how???

2012-04-13 Thread Muhammad Sahil
Hi lbendlin, Thanks for your great response, is it work for only Wi-Fi or any other network like GPRS. Regards, Sahil On Sat, Apr 14, 2012 at 1:04 AM, lbendlin l...@bendlin.us wrote: 1) This will only work when the WiFi is actually powered. This may not be guaranteed in

Re: [android-developers] Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Kostya Vasilyev
14.04.2012 1:32, Deepwinter ???: However when I launch the activity later in the program (where it should be launched), I just get a black screen. I get no android runtime errors, and onCreate on the new activity is never called. All I get in ADB is 'Wrote stack trace to

Re: [android-developers] Re: i want to put restriction on an application for particular MAC address of mobile. how???

2012-04-13 Thread Kostya Vasilyev
http://android-developers.blogspot.com/2011/03/identifying-app-installations.html 14.04.2012 1:37, Muhammad Sahil ???: Hi lbendlin, Thanks for your great response, is it work for only Wi-Fi or any other network like GPRS. Regards, Sahil On Sat, Apr 14, 2012 at 1:04

[android-developers] Re: Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Deepwinter
Ok This makes sense. I've focused the issue down to whether or not I call putExtra on the Intent I'm launching. Why would the contents putExtra cause this kind of error? The value of the extra is a String, and rather large JSON value at that which does contain binary data. Is the size of the

Re: [android-developers] Re: Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Kostya Vasilyev
What is rather large in rather large JSON value ? 14.04.2012 1:50, Deepwinter написал: Ok This makes sense. I've focused the issue down to whether or not I call putExtra on the Intent I'm launching. Why would the contents putExtra cause this kind of error? The value of the extra is a

[android-developers] Re: Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Deepwinter
It's large because it's a JSON document containing a JPEG file. Since I'm using a REST interface to get data to the app, it was easier to pass the entire JSON document in putExtra rather than implement Parceable on my POJO. I'm just going to go out on a limb here and guess that this isn't the

Re:: [android-developers] Re: Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Kostya Vasilyev
The amount of data you can send over Android's binder mechanism is limited to 500 Kb (iirc), so yes, if the image is large, you could be exceeding this limit. When this happens, the logcat is supposed to have a warning, something like failed binder transaction. 14.04.2012 2:30 пользователь

[android-developers] Re: Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Lew
Deepwinter wrote: It's large because it's a JSON document containing a JPEG file. Since I'm using a REST interface to get data to the app, it was easier to pass the entire JSON document in putExtra rather than implement Parceable on my POJO. I'm just going to go out on a limb here and

[android-developers] WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH and 4.0+ touch events not captured

2012-04-13 Thread Bsweet
I have a service that I allow other applications to bind to remotely. During key events that they record to my service, I show a small overlay above their app. I use the following: WindowManager.LayoutParams params; params = new WindowManager.LayoutParams();

[android-developers] Spam apps in the Play search lists

2012-04-13 Thread David Ross
Has anyone else experienced spam apps in Google's search results in Play? I have a season app for an annual sporting league in Australia, and aside from the mystery of how the big players manage to get their apps at the top of the search results immediately they publish them, the more irritating

Re: [android-developers] Spam apps in the Play search lists

2012-04-13 Thread Jim Graham
On Fri, Apr 13, 2012 at 05:36:23PM -0700, David Ross wrote: Has anyone else experienced spam apps in Google's search results in Play? I heard on the news that Angry Birds Space (Android only) either is a fake, or there's a fake version of it, that supposedly lets someone else take control of

Re: [android-developers] Re: Wrote stack trace to '/data/anr/traces.txt', then black screen

2012-04-13 Thread Dianne Hackborn
On Fri, Apr 13, 2012 at 3:29 PM, Deepwinter foundationservi...@gmail.comwrote: It's large because it's a JSON document containing a JPEG file. *thud* Don't do that. Don't put a Bitmap of any significant size in the extras. So definitely don't put it in there encoded as a JSON array. If the

Re: [android-developers] Task switcher image

2012-04-13 Thread Dianne Hackborn
Sorry there is no way to change it. This is a static screenshot of the last time the user saw your app. On Thu, Apr 12, 2012 at 5:58 PM, Brett bnotting...@gmail.com wrote: In ICS especially, there is a new was to switch tasks like the old way of holding down the home key. Now you see a list

Re: [android-developers] What qualifies an Android phone to show up in Android Marketplace filter

2012-04-13 Thread Dianne Hackborn
It shows up if what you have specific in your app filtering allows it to show up. If you say I tailored the Manifest files to accepts any devices with normal, large and xlarge screen sizes and low, medium and high density, then it sounds like you are using:

[android-developers] Re: Google's 1099-K

2012-04-13 Thread Zsolt Vasvari
Looks like,according to the link TreKing posted, you had to made $20,000 (before the 30%) OR made 200 transactions. I don't know what constitutes a transaction, individual sales or monthly payouts, but that's what it says. On Saturday, April 14, 2012 12:51:55 AM UTC+8, niko20 wrote: I have

[android-developers] Re: Google's 1099-K

2012-04-13 Thread Zsolt Vasvari
In your case, since you didn't receive a 1099-K, that's probably fine, but for those of us who did, we better start from the number appearing on the 1099-K as that's what the IRS gets also. Of course, I am no tax accountant, so you better ask a professional. On Saturday, April 14, 2012

[android-developers] Re: Google's 1099-K

2012-04-13 Thread John Coryat
we better start from the number appearing on the 1099-K as that's what the IRS gets also. That's what we did. Don't want to mess with the IRS! -John Coryat -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email