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

2011-01-26 Thread jman
you want to use ksoap2 since rmi does not seem to be fully supported yet. On Jan 26, 7:17 am, Nandlal Viranni nandlal.phys...@gmail.com wrote: 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

[android-developers] Re: PackageManage: Couldn't copy package file to temp file.

2010-01-25 Thread jman
I recently saw several of the same issues that happened to the apps I renamed. A little bit frustrated since couldn't find any answer on the web. After trial-and-error, I got it to work from doing it through command-line by adb install .apkThat might not be a good solution, but at

[android-developers] reset to paid or completely remove the old free apps from Market?

2009-05-05 Thread jman
I certainly would like to keep using the old name for the paid version of the software but I did not seem to find a way of resetting it to paid or removing the old free version entirely so that I can upload the brand new software. Thanks. --~--~-~--~~~---~--~~

[android-developers] Re: google dev phone

2009-02-26 Thread jman
Actually, if you are a T-Mobile customer, all you need to do is put in your own SIM card and it will work. There is no need to sign up for the 3G plan. On Feb 26, 11:57 am, Michael Brunton-Spall michael.brunton- sp...@guardian.co.uk wrote: Hey Karim, You have a dev phone.  There should

[android-developers] Re: is there a way to read the screen text

2009-02-10 Thread jman
http://code.google.com/p/eyes-free/ On Feb 10, 7:48 am, redmapleleaf redmaplel...@gmail.com wrote: Hi all, I would like to develop an application to read the screen text for the blind. Do you know if there is any way that I can read the text (word, or line of text) under the cursor at any

[android-developers] Re: XMPP with Smack and SDK 1.0 success anyone?

2008-12-30 Thread jman
I am having the same issue. Were you able to find a solution to this issue? Thanks. On Nov 10, 5:54 am, Peter Neubauer neubauer.pe...@gmail.com wrote: Hi there, it seemsSmackGTalk conenctions are not working anymore due to certificate problems. Has anyone been able to successfully getXMPP

[android-developers] Re: XMPP through Smack

2008-12-28 Thread jman
Objects). Hopefully that won't have as many problems. :) Cheers, Earlence Fernandes On Dec 28, 7:45 am, jman chunyen...@gmail.com wrote: After reading many previous posts about XMPP, I am still not sure if anyone actually got XMPP to work for the official SDK 1.0. I had trouble

[android-developers] XMPP through Smack

2008-12-27 Thread jman
After reading many previous posts about XMPP, I am still not sure if anyone actually got XMPP to work for the official SDK 1.0. I had trouble receiving any message. From the logs, I saw this: 12-27 19:43:14.866: WARN/System.err(225): java.security.KeyStoreException: KeyStore jks

[android-developers] Re: Bitmap.getPixels()

2008-12-11 Thread jman
with the background bitmap? Thanks. On Dec 5, 7:30 am, Mike Reed r...@google.com wrote: The color seems fine. Can you enclose a code-snippet, for the draw and thegetPixels() call? thanks On Thu, Dec 4, 2008 at 5:55 PM, jman chunyen...@gmail.com wrote: It's 50% transparent, i.e. alpha

[android-developers] Re: Bitmap.getPixels()

2008-12-04 Thread jman
It's 50% transparent, i.e. alpha channel is 0x80, paint color is 0x8000ff00 On Dec 4, 8:52 am, Robert Green [EMAIL PROTECTED] wrote: Did you mean partially transparent green or fully transparent? On Dec 4, 1:21 am, jman [EMAIL PROTECTED] wrote: I painted a transparent green curve on top

[android-developers] Bitmap.getPixels()

2008-12-03 Thread jman
I painted a transparent green curve on top of a background bitmap. When I use Bitmap.getPixels() to get the result into byte array, I always get a black curve. The curve position is correct but color isn't. Is there anything I need to do before calling Bitmap.getPixels ()? Thanks.