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

2012-03-14 Thread tsukishiro yamazaki
visualize clearer how things should come together. Once again, thanks for the help! Truly appreciated it! :D Best regards, - tsukishiro On Tuesday, March 13, 2012 5:57:15 PM UTC+9, tsukishiro yamazaki wrote: Hello everyone, I wanted to implement swiping for the custom IME I am developing. Looking

[android-developers] Button cannot be clicked when used with an IME

2012-03-14 Thread tsukishiro yamazaki
Hello everyone, My custom IME is slowly coming to life! Thanks to all the people who have replied to my posts regarding my IME. I hope I can get the same support for this question too. So here it is. Up until now, I have been using KeyboardView as the root tag in the layout xml for my

[android-developers] Button cannot be clicked when used with an IME

2012-03-14 Thread tsukishiro yamazaki
Hello everyone, My custom IME is slowly coming to life! Thanks to all the people who have replied to my posts regarding my IME. I hope I can get the same support for this question too. So here it is. Up until now, I have been using KeyboardView as the root tag in the layout xml for my

[android-developers] Re: update TextView inside a TimerTask

2012-03-13 Thread tsukishiro yamazaki
You can take the sample here http://developer.android.com/guide/topics/ui/dialogs.html#ProgressDialog for your reference. Check the sample code marked by the section *Example ProgressDialog with a second thread*http://developer.android.com/guide/topics/ui/dialogs.html# Thanks and best

[android-developers] Re: How to make keyboard layout and input style similar to Google Japanese Input Beta IME

2012-03-13 Thread tsukishiro yamazaki
anyone know how Google implemented their keyboard keys to allow flicking? Thanks and best regards, - tsukishiro On Tuesday, March 13, 2012 10:36:28 AM UTC+9, tsukishiro yamazaki wrote: Hello everyone, Have you tried using Google Japanese Input Beta IME on your Android devices? It has a unique

[android-developers] Cannot catch swipe action for SoftKeyboard

2012-03-13 Thread tsukishiro yamazaki
Hello everyone, I wanted to implement swiping for the custom IME I am developing. Looking into SoftKeyboard sample code, it seems this can be handled by the swipe methods under OnKeyboardActionListener. However when I tried to test if the swipe methods in SoftKeyboard were working, I found

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

2012-03-13 Thread tsukishiro yamazaki
.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 into SoftKeyboard sample code, it seems this can be handled by the swipe methods

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

2012-03-13 Thread tsukishiro yamazaki
, 2012 9:34:16 AM UTC+9, tsukishiro yamazaki wrote: Hi Solution 9420, Thanks so much for your reply! I have been trying SoftKeyboard (Demo API) and I wanted to verify if the method swipeLeft(), which has been implemented to do backspace or delete function, is actually working. So I deployed

[android-developers] Re: Adding swype-like functionality to the LatinIME keyboard

2012-03-12 Thread tsukishiro yamazaki
Hi, I just want to clarify if you were able to emulate swiping in the android emulator? I read from another discussion thread that swiping is not supported in the emulator and can only be verified using an actual device. If you were able to do it using the emulator, can you share how? Thanks

[android-developers] How to make keyboard layout and input style similar to Google Japanese Input Beta IME

2012-03-12 Thread tsukishiro yamazaki
Hello everyone, Have you tried using Google Japanese Input Beta IME on your Android devices? It has a unique keyboard layout and input style that I wanted to adopt to my custom IME. Keyboard Layout : Input keys can optionally have 5 labels. 1 in the middle, 1 on top, 1 on the right, 1 on the

[android-developers] Re: update TextView inside a TimerTask

2012-03-12 Thread tsukishiro yamazaki
If I'm not mistaken, any code inside a TimerTask is running on a different thread. This means that it won't have access to the main UI thread. So if you put some code in there to update your Textview, you will probably end up with an exception or error saying that it cannot access the main ui

[android-developers] TOUCHABLE_INSETS_FRAME on landscape orientation causes fields to be untouchable

2012-03-08 Thread tsukishiro yamazaki
Hello, I have been working on my custom IME for the past few weeks now. My goal wat to make a soft keyboard that will not pan or resize the UI behind it. To do this, I implemented/override the onComputeInsets method for InputMethodService. There, I set outInsets.visibleTopInsets to the display

[android-developers] How to prevent window from adjusting when soft keyboard is displayed

2012-02-29 Thread tsukishiro yamazaki
Hello all, I came upon an IME called Transparent Keyboard.apk It's an onscreen keyboard that keeps everything behind it in tack. In other words, it doesn't resize or pan the contents behind to make room for the keyboard. Does anyone know how this was done? I want my own IME to do this as well and

[android-developers] Re: No TOUCHABLE_INSETS_REGION constant field under InputMethodService.Insets class in SDK

2012-02-29 Thread tsukishiro yamazaki
Sorry if this sounds annoyingly persistent but what is the use of TOUCHABLE_INSETS_REGION constant in the first place? I thought it's supposed to limit the touchable regions in the input view of the soft keyboard. Is this wrong? On Feb 17, 3:32 pm, Jim Andresakis jimandresa...@gmail.com wrote: I

[android-developers] Disable window or screen resize when soft keyboard is displayed

2012-02-29 Thread tsukishiro yamazaki
Hi, I am working on a customized IME. Basically, I want to create a transparent keyboard (similar to Tranparent Keyboard app on the market). I want my IME to be on top of the UI or application behind it. So I really don't want the window or screen to resize when the keyboard is displayed. Does

[android-developers] Re: No TOUCHABLE_INSETS_REGION constant field under InputMethodService.Insets class in SDK

2012-02-16 Thread tsukishiro yamazaki
, tsukishiro yamazaki tsukishir...@gmail.com wrote: Hi, I'm making a custom-shaped softkeyboard. I am using the softkeyboard sample from developers.android.com. I want that only certain parts in thekeyboardwill betouchableso I though of using the constant field TOUCHABLE_INSETS_REGION to set

[android-developers] Re: No TOUCHABLE_INSETS_REGION constant field under InputMethodService.Insets class in SDK

2012-02-16 Thread tsukishiro yamazaki
...@android.com wrote: Sorry, this is not supported. On Thu, Feb 16, 2012 at 3:55 PM, tsukishiro yamazaki tsukishir...@gmail.com wrote: Can anyone help me with this one? If it's hard to imagine, you can refer to my rough sketch below

[android-developers] No TOUCHABLE_INSETS_REGION constant field under InputMethodService.Insets class in SDK

2012-02-13 Thread tsukishiro yamazaki
Hi, I'm making a custom-shaped soft keyboard. I am using the soft keyboard sample from developers.android.com. I want that only certain parts in the keyboard will be touchable so I though of using the constant field TOUCHABLE_INSETS_REGION to set the touchableInsets member field. However, this

[android-developers] Always overlayed soft keyboard

2012-01-23 Thread tsukishiro yamazaki
Hello, I am making my own soft keyboard based on the SoftKeyboard sample from developers.android.com I wanted to make mine always overlayed on the activity behind/below it. By this, I mean that the keyboard won't push the contents of the Activity out of the screen. There's an application in the