私は自分のアプリケーションにいくつかのEditTextを持っています。 Enterキーを押すと、次のEditTextに問題なくタブすることができますが、Enterキーを変更してこのボタンにEnter Simbolが表示されず、代わりに「次へ」または「完了」が表示されます。私は多くのことを試みましたが、結果はありませんでした。ここに私のEditTextのためのXMLコードは次のとおりです。Android SoftKeyBoard - Enterキーの名前を変更します。
<EditText
android:id="@+id/et_nt_name"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="top"
android:imeOptions="actionNext|flagNoEnterAction"
android:imeActionLabel="Next"
android:singleLine="true"
android:inputType="textShortMessage"
/>
これを追加私はそれを見つけた... 代わり アンドロイドの:imeOptions = |私だけ必要 "actionNext flagNoEnterAction": アンドロイド:imeOptions =」 actionNext " –