I'm trying to keep the keyboard up, at all times. I don't want the back button to hide it. I don't want anything to hide it.
I've dumped android:windowSoftInputMode="stateAlwaysVisible" in the manifest, though it seems the team that built this feature should google the definition of "always"
When I press the back button on my app it hides the keyboard.
Is there a way to catch and kill the first back button click, or pass it up to the activity and not have the keyboard hide?
EDIT
Overriding any of these and putting break points on every line shows me one thing, none of these get called. The keyboard is hidden, and my activity didn't have have a clue.
public boolean onKeyLongPress(int keyCode, KeyEvent event){
public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event){
public boolean onKeyUp(int keyCode, KeyEvent event){
public boolean onKeyDown(int keyCode, KeyEvent event) {
public void onBackPressed() {