Re: [android-developers] Re: Market sales suddenly cut in half

2011-04-25 Thread Jerry Fan
I am also experiencing sales drop these two days especially today, On Tue, Apr 26, 2011 at 4:51 AM, Brill Pappin bpap...@sixgreen.com wrote: FYI - CANCELLED would include uninstalls AND failed orders. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: Kill an app / package in API 8 (Froyo)

2010-10-13 Thread Jerry Fan
You can use getRunningTaskInfo compare against getRunningAppProcessInfo. If process of particular component is not in runnAppProcess list, then you know it is deleted. I used this trick to work around the new kill process behavior. On Thu, Jul 22, 2010 at 11:12 PM, Marcin_GUmeR

Re: [android-developers] Re: horizontal scrolling in GridView control

2010-08-04 Thread Jerry Fan
but gallery does center lock automatically. Do you know a way make items shown from left to right and not moving to center upon selected? On Fri, Jul 16, 2010 at 6:32 PM, Namrata puranik.namr...@gmail.com wrote: I had the same issue, I am using gallery instead of grid for this. On Jul 16,

[android-developers] How to store a drawable in database?

2010-08-01 Thread Jerry Fan
Hi folks, is there anyway that I can store drawables into database? -- 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] Re: Socket in AsyncTask - application crashesso the UI won't be blocked

2010-07-21 Thread Jerry Fan
You can register a handler in your code and send message to update your UI component in Handler. I used this way to solve a similar problem like urs before. For exapmpel if (socket.isConnected()) { OutputStreamOut = new ObjectOutputStream(socket.

Re: [android-developers] How to see database files of my phone?

2010-07-21 Thread Jerry Fan
You need to root it first and then use adb to connect to your phone. App dbs are normally sotred at /data/data/(name of the app)/databases/(name of the db).db Just use sqlite3 name of the db).db to view it On Wed, Jul 21, 2010 at 7:44 PM, Nency Robert avayam...@gmail.com wrote: HI, I want

Re: [android-developers] can not see app in Market

2010-06-13 Thread Jerry Fan
If u are using milestone and if u just upgraded APAC update, then it is normal. It takes time to view copy protected apps. On Sun, Jun 13, 2010 at 7:08 AM, Andrei gml...@gmail.com wrote: I have 3 android phones with different Os version. I can see all my apps, but one disappeared for more

Re: [android-developers] Re: ListView/Adapter IllegalStateException

2010-04-07 Thread Jerry Fan
I have a fix for this. Just set the visibility of ur ListView to Gone during update and back to visible after update. By doing so, u can avoid the inconsistency of ur adapter and listView item count. On Wed, Mar 31, 2010 at 4:35 PM, ionel ionelt2...@gmail.com wrote: I am calling

Re: [android-developers] IllegalStateException after ListView's adapter has changed

2010-04-07 Thread Jerry Fan
I have a fix for this. Just set the visibility of ur ListView to Gone during update and back to visible after update. By doing so, u can avoid the inconsistency of ur adapter and listView item count. On Mon, Feb 22, 2010 at 3:31 PM, Jayesh Salvi jayeshsa...@gmail.com wrote: Hi, This is

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-02 Thread Jerry Fan
Is it one phone per developer account ? We have multiple apps qualified the standard published by 2 developers sharing the same account. On Wed, Mar 3, 2010 at 1:49 PM, polyclefsoftware dja...@gmail.com wrote: Yeah, like some others here it didn't even cross my mind that this was some sort of

[android-developers] Re: what is the picture format for Picture.WriteToStream?

2009-06-04 Thread Jerry Fan
known to the Picture class. But, i could be wrong... :) On Jun 4, 1:23 am, Jerry Fan jerryfan1...@gmail.com wrote: bump On Thu, Jun 4, 2009 at 10:09 AM, jerryfan2000 jerryfan1...@gmail.com wrote: Hi, What format of picture will I get by using Picture.WriteToStream?- Hide

[android-developers] Re: how to convert Picture object to Bitmap object?

2009-06-04 Thread Jerry Fan
Hi Sujay, Did you mean the bitmap assigned to Canvas construction is actually used for combing all kind of text, line, and picture drawing action into one piece of bitmap object? I'll try it and show you the code tomorrow. Thanks for your advice. On Thu, Jun 4, 2009 at 5:26 PM, Sujay Krishna

[android-developers] Re: what is the picture format for Picture.WriteToStream?

2009-06-03 Thread Jerry Fan
bump On Thu, Jun 4, 2009 at 10:09 AM, jerryfan2000 jerryfan1...@gmail.comwrote: Hi, What format of picture will I get by using Picture.WriteToStream? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: webView: How to click a web link and display in my WebView app

2009-05-13 Thread Jerry Fan
I got the answer by myself. If anyone is also interested to know how to do it, please go to below URL for a tutorial. http://developer.android.com/guide/tutorials/views/hello-webview.html On Thu, May 14, 2009 at 8:01 AM, jerryfan2000 jerryfan1...@gmail.comwrote: Hi, I am trying to add a