MyTFG / mytfg-app-android

Android App for MyTFG
GNU General Public License v3.0
4 stars 0 forks source link

Tastatur bleibt aktiv nach Login #30

Open rleh opened 8 years ago

rleh commented 8 years ago

Nach (erfolgreichem) Login wird das Einstellungen Fragment geladen, jedoch bleibt die Tastatur geöffnet. Das stört und sieht hässlich aus.

Turakar commented 8 years ago

Gleicher Fehler beim Nachrichtencenter.

rleh commented 8 years ago

Muss man wohl manuell lösen, ist aber nicht viel Aufwand:

// Check if no view has focus:
View view = this.getCurrentFocus();
if (view != null) {  
    InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}

Siehe http://stackoverflow.com/questions/1109022/close-hide-the-android-soft-keyboard/1109108#1109108