[android-developers] Re: Softkeyboard

2012-05-21 Thread Solution 9420
, Solution 9420 On Ma y 16, 2:44 am, Tony tonych...@gmail.com wrote: I want to program a softkeyboard where you click on a key, and instead of outputting an alphabet into the textediting area, i want it to output a different letter or symbol. Sort of like how a japanese romaji keyboard would

[android-developers] Re: java.lang.OutOfMemoryError on 4.0.3 APV and phone not in 2.1 2.3

2012-05-18 Thread Solution 9420
(image) view). - Manually free bitmap to assist Garbage Collection activity. I have not got to the bottom of this item. But the symptom seems to go away. Best Regards, Solution 9420 [My code is like these] private Bitmap bp=null; void main() { .. .. } onOrientationChage() { if( bp != null

[android-developers] java.lang.OutOfMemoryError on 4.0.3 APV and phone not in 2.1 2.3

2012-05-17 Thread Solution 9420
. Regards, Solution 9420 -- 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 android-developers+unsubscr...@googlegroups.com

[android-developers] Re: Bluetooth (BT) Hardware keyboard custom layout and special keys service

2012-03-18 Thread Solution 9420
Hi There, The CNTL key is not existed in Android 2.x series. You'll have to dig into the OS keymap, like what you mentioned, to open these to the underlined applications. My app, 9420 Tablet keyboard (and 9420 Thai Keyboard), handls the key inputs from the HW keyboard as well beside the on-screen

[android-developers] Re: Cannot catch swipe action for SoftKeyboard

2012-03-14 Thread Solution 9420
() and GestureDetector.onTouchEvent(me) - also this important one. detectAndSendKey() Once you reach step #2, you can then start to dump out the x,y of the actions you do on the keyboard. Cheers, Solution 9420 On Mar 14, 8:42 am, tsukishiro yamazaki tsukishir...@gmail.com wrote: Hello again Solution 9420

[android-developers] Re: How to get smart key board on my device.

2012-03-14 Thread Solution 9420
the physicak device (a.k.a NFC or keyboard). Best Regards, Solution 9420 www.solution9420.com On Mar 14, 11:47 pm, Srinivas Nainala srito...@gmail.com wrote: Dear All, I am facing strange behavior on my Acer Iconia tablet when I connect NFC reader to the tablet USB port. Its killing my soft

[android-developers] Bring up Recent Apps Dialog programatically...

2012-03-13 Thread Solution 9420
Dears, I posted previously but not sure if it got thru. My app has a button to bring up the Recent Apps Dialog. Is it possible to do that or it is locked for OS only? Can someone guide me the way to do it? I did searched for solution with no avails. Best Regards, Solution 9420 -- You received

[android-developers] Re: Cannot catch swipe action for SoftKeyboard

2012-03-13 Thread Solution 9420
- Key-level fling - MultiTap - LongPress All are done thru custom keyboard view. See www.solution9420.com Cheers, Solution 9420 On Mar 13, 3:57 pm, tsukishiro yamazaki tsukishir...@gmail.com wrote: Hello everyone, I wanted to implement swiping for the custom IME I am developing. Looking

[android-developers] Re: Bring up Recent Apps Dialog programatically...

2012-03-13 Thread Solution 9420
Thank Justin. I'll check it out. Best Regards, Solution 9420 On Mar 13, 10:29 pm, Justin Anderson magouyaw...@gmail.com wrote: AFAIK you can't access that...  However, it isn't super hard to roll your own.  This method returns a list of recently run apps:http://developer.android.com

[android-developers] Re: find word in faster speed

2011-12-20 Thread Solution 9420
search tree algorithm. You'll have to a bit careful the size of the index file, and very optimized on memory usage to avoid the delay from JAVA gabage collection as well. Cheers, Solution 9420... www.solution9420.com On Dec 20, 12:26 am, felix guofuchu...@gmail.com wrote: Hi! I'm working