[android-developers] Re: IME - Main Dictionary

2009-08-02 Thread Spiros
I'm manually fudging the generated APK (zip -d ime.apk res/ raw/main.dict; zip -0 ime.apk res/raw/main.dict) before signing, but I'd like to do this as part of the build process (makes testing a bit tedious). Thanks! Spiros On Jul 8, 12:23 pm, nEx.Software justin.shapc...@gmail.com wrote: So

[android-developers] Hardware keyboard caps state

2009-06-04 Thread Spiros
it to lowercase (since I need to know what the initial caps state is when the IME starts). Thanks! Spiros --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Hardware keyboard caps state

2009-06-04 Thread Spiros
Oops, duplicate of http://groups.google.com/group/android-framework/browse_thread/thread/a656b7aa896caa7f My bad, I'll re-post there -- please ignore this. Cheers, Spiros On Jun 4, 1:12 pm, Spiros spapa...@gmail.com wrote: Hi, I'm writing a Greek IME, which also needs to translate hardware

[android-developers] Re: Should cursors used in autocomplete adapters be managed or not?

2009-02-11 Thread Spiros
there is no way to iterate over the managed cursors in onPause() to perform a post-mortem cleanup (no accessor for Activity#mManagedCursors). Or am I missing something? Thanks, Spiros On Feb 10, 7:17 pm, Romain Guy romain...@google.com wrote: It's up to you. If you don't use managed cursors, you

[android-developers] Getting user's confirmation in OnPreferenceChangeListener

2009-02-10 Thread Spiros
something other than onPreferenceChanged() for this? Any suggestions would be appreciated! Thanks, Spiros --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Should cursors used in autocomplete adapters be managed or not?

2009-02-10 Thread Spiros
[sic] but never closed). If I do then, if the application pauses (e.g., incoming call) and then resumes, I get an unhandled exception (attempted to requery closed cursor thrown by Activity#performRestart(), in Activity.java: -- SDK 1.0_r2, btw). What am I missing? Thanks! Spiros

[android-developers] Re: Getting user's confirmation in OnPreferenceChangeListener

2009-02-10 Thread Spiros
); Spiros. On Feb 10, 7:03 pm, Spiros spapa...@gmail.com wrote: Hi, I have a checkbox preference which, when set for the first time, may trigger a long-running operation.  I want to get the user's explicit consent before starting this operation.  However, if the user hits cancel, then the preference