[android-developers] Re: please stop logcat autoscroll

2011-07-23 Thread freeanderson
one more. i tried logcat filter like 'system.err'. it's meaningless. it's too scrolled automatically MADLY!!! i hate logcat medley. On 7월24일, 오전4시11분, freeanderson wrote: > please stop logcat 'autoscroll' or please make its option. > > can&#

[android-developers] please stop logcat autoscroll

2011-07-23 Thread freeanderson
please stop logcat 'autoscroll' or please make its option. can't filtering messages like sqlite. so can't see its message when autoscrolling madly. madly madly madly!! i doubt android eclipse plugin developer team used logcat really. -- You received this message because you are subscribed

[android-developers] chrome os can execute apk?

2009-08-31 Thread freeanderson
of course i don't know google's plan. i just hope it. through emulation though. how about android-sdk for chrome application? the idea is just recompiling to make execution file for google chrome os. how about the sdk for windows? it's for windows platform. is there any supporting like this? or

[android-developers] Re: out of memory error & getWallpaper

2009-08-24 Thread freeanderson
I guess nobody reported my case. I've solved like below. See my case. ... Bitmap dummy = Bitmap.createBitma(1, 1, Config.RGB_565); Bitmap a = Bitmap.createBitma(100, 100, Config.RGB_565); Canvas c = new Canvas(a); ...c.draw(..) ... a.recycle(); c.setBitmap(dummy); // This is key point. Ve

[android-developers] complete action using

2009-07-16 Thread freeanderson
hi how can I register my app to show in 'complete action using dialog'? Thank you. --~--~-~--~~~---~--~~ 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@go

[android-developers] Re: Why supports Typeface.createFromAsset only?

2009-05-11 Thread freeanderson
y than from a file. If you don't know the reason, just pass. that is enough. I didn't expect reply like 'YOU DO MAKE IT'. On May 11, 4:05 pm, Raphael wrote: > On Sun, May 10, 2009 at 7:57 PM, freeanderson wrote: > > > just cause of time? i guess it seems to be inte

[android-developers] Re: Why supports Typeface.createFromAsset only?

2009-05-10 Thread freeanderson
had time to do it.  You could > contribute a patch if you strongly want it. > > On Sun, May 10, 2009 at 4:11 PM, freeanderson wrote: > > > > > Hi. > > > The Typeface can not read a TTF font from external file. > > I just want to know why. > > Why this fea

[android-developers] Why supports Typeface.createFromAsset only?

2009-05-10 Thread freeanderson
Hi. The Typeface can not read a TTF font from external file. I just want to know why. Why this feature is denied even in 1.5r1? And have any plan to open the feature? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: Unknown error

2009-05-09 Thread freeanderson
in 1.5r1 On May 9, 6:43 pm, freeanderson wrote: > Unknown error. continuously. > That's all. > red message 'Unknown error.' > Some other projects like ApiDemos are not shown the message. > But Notepad is shown. Even though Notepad an

[android-developers] Unknown error

2009-05-09 Thread freeanderson
Unknown error. continuously. That's all. red message 'Unknown error.' Some other projects like ApiDemos are not shown the message. But Notepad is shown. Even though Notepad and its manifest have no error. --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: Suggestion about android.graphics.path for performance

2009-05-02 Thread freeanderson
Yeap. Thank you for information. On May 3, 7:06 am, Mark Murphy wrote: > freeanderson wrote: > > Hi. > > > Currently android.graphics.path is JNI. > > It has a good performance. Working well. > > But I think it need to be added more features to Path. > >

[android-developers] Suggestion about android.graphics.path for performance

2009-05-02 Thread freeanderson
Hi. Currently android.graphics.path is JNI. It has a good performance. Working well. But I think it need to be added more features to Path. It's like this: Path p = new Path(); p.load(stream); p.save(stream); The reason is simple. Imagine you want to load TrueType font and to build it up to Pa

[android-developers] Android doesn't support ICC Profile related API?

2009-04-14 Thread freeanderson
Android doesn't support ICC(INTERNATIONAL COLOR CONSORTIUM) profile related API? Does Google have a plan? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] No reply on market

2009-01-08 Thread freeanderson
Hello. About 10 days ago, I posted question to android market's 'support' about my order. But there was no reply until now. Is the market being operated normally? It doesn't make a sense. (Sorry for posting here.) Thank you. --~--~-~--~~~---~--~~ You received th

[android-developers] Re: Market Limitation

2008-12-21 Thread freeanderson
e a South Korea? > > On Sat, Dec 20, 2008 at 2:03 AM, freeanderson wrote: > > > > > Hi, > > > I'm an android developer living in South Korea and interesting at > > Android Market. > > Sometimes ago I have tried billing in the market to join. > >

[android-developers] Market Limitation

2008-12-20 Thread freeanderson
Hi, I'm an android developer living in South Korea and interesting at Android Market. Sometimes ago I have tried billing in the market to join. But there is no 'Korea' in the country list on billing page. How can I join and billing it? Isn't Korean Android developer accepted to join to Android Ma

[android-developers] Re: canvas.scale and text size bug

2008-04-04 Thread freeanderson
> drawing, the font size and the type face you are using. > > > > On Thu, Apr 3, 2008 at 11:41 PM, freeanderson <[EMAIL PROTECTED]> wrote: > > > hello, > > > i'm using bitmap object to draw text like below step. > > first, i use the bitmapCanvas.sca

[android-developers] canvas.scale and text size bug

2008-04-03 Thread freeanderson
hello, i'm using bitmap object to draw text like below step. first, i use the bitmapCanvas.scale(sx, sy); second, text strings are drawn on the bitmap object. third, i draw the bitmap object to the real canvas by using canvas.drawBitmap(..). but sometimes text size is not fit to area when i chan