Automatically show keyboard when new SMS is composed

fork-5.53.8
bozsco 2014-01-09 16:52:11 -05:00
rodzic 75ce00cb90
commit e9a8c7474c
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -128,6 +128,7 @@
<activity android:name=".ContactSelectionActivity"
android:label="@string/AndroidManifest__select_contacts"
android:windowSoftInputMode="stateHidden"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/>
<activity android:name=".AutoInitiateActivity"

Wyświetl plik

@ -646,6 +646,9 @@ public class ConversationActivity extends PassphraseRequiredSherlockFragmentActi
if (this.recipients != null) {
recipientsPanel.addRecipients(this.recipients);
} else {
InputMethodManager input = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
input.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0);
}
}