[android-developers] Re: How to track menu navigation focus changes?

2009-01-03 Thread Jamie
For more on the rationale behind touch-mode and ListView focus see: http://android-developers.blogspot.com/2008/12/touch-mode.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: How to track menu navigation focus changes?

2009-01-03 Thread blindfold
I've submitted it now as issue 1705: http://code.google.com/p/android/issues/detail?id=1705 In my own app I now use a ListView to replace Menu altogether, and that finally works. Regards On Dec 30 2008, 3:12 am, Enginerd wrote: > I'm having a similar issue.  I guess you could set up listeners

[android-developers] Re: How to track menu navigation focus changes?

2008-12-30 Thread Enginerd
I'm having a similar issue. I guess you could set up listeners for key up/down (and/or scroll), and check to see where the focus is. It's tacky, but I think it would work for a simple scroll list. Not sure if this would work for all phones though, and it would definitely be a good thing to have.

[android-developers] Re: How to track menu navigation focus changes?

2008-12-26 Thread blindfold
In other words, what is the rationale behind Android lacking something like an android.view.MenuItem.OnFocusChangeListener, while there does exist an android.view.View.OnFocusChangeListener? After all, the ListView - which is functionally not all that different from a Menu - supports both a setOnF