ScrollableTabHost-for-Android
ScrollableTabHost-for-Android copied to clipboard
key events are not working for child activities
Reacting on key events does not work for child activities, the events are always handled by the ScrollableTabHost. This can be fixed by changing the startGroupAcitivity() function and adding the following before leaving the function: view.setVisibility(View.VISIBLE); view.setFocusableInTouchMode(true); ((ViewGroup)view).setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
Cheers
thanks