# HG changeset patch # User Philipp Wiesemann # Date 1469645228 -7200 # Node ID 2e4c1b2fce79f39135ed79eb85c485593852d6e2 # Parent 1b5a21b3fa977f031394d5a627d80b004e50d887 Android: Updated a comment. diff -r 1b5a21b3fa97 -r 2e4c1b2fce79 android-project/src/org/libsdl/app/SDLActivity.java --- a/android-project/src/org/libsdl/app/SDLActivity.java Wed Jul 27 20:46:18 2016 +0200 +++ b/android-project/src/org/libsdl/app/SDLActivity.java Wed Jul 27 20:47:08 2016 +0200 @@ -1394,7 +1394,7 @@ // As seen on StackOverflow: http://stackoverflow.com/questions/7634346/keyboard-hide-event // FIXME: Discussion at http://bugzilla.libsdl.org/show_bug.cgi?id=1639 // FIXME: This is not a 100% effective solution to the problem of detecting if the keyboard is showing or not - // FIXME: A more effective solution would be to change our Layout from AbsoluteLayout to Relative or Linear + // FIXME: A more effective solution would be to assume our Layout to be RelativeLayout or LinearLayout // FIXME: And determine the keyboard presence doing this: http://stackoverflow.com/questions/2150078/how-to-check-visibility-of-software-keyboard-in-android // FIXME: An even more effective way would be if Android provided this out of the box, but where would the fun be in that :) if (event.getAction()==KeyEvent.ACTION_UP && keyCode == KeyEvent.KEYCODE_BACK) {