Merge "Import revised translations. DO NOT MERGE" into ics-mr1
diff --git a/src/com/android/contacts/editor/TextFieldsEditorView.java b/src/com/android/contacts/editor/TextFieldsEditorView.java
index 5627aa5..0919006 100644
--- a/src/com/android/contacts/editor/TextFieldsEditorView.java
+++ b/src/com/android/contacts/editor/TextFieldsEditorView.java
@@ -43,6 +43,7 @@
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
+import android.view.inputmethod.EditorInfo;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
@@ -196,6 +197,11 @@
PhoneNumberFormatter.setPhoneNumberFormattingTextWatcher(mContext, fieldView);
}
+ // Show the "next" button in IME to navigate between text fields
+ // TODO: Still need to properly navigate to/from sections without text fields,
+ // See Bug: 5713510
+ fieldView.setImeOptions(EditorInfo.IME_ACTION_NEXT);
+
// Read current value from state
final String column = field.column;
final String value = entry.getAsString(column);