Search code examples
androidandroid-edittextandroid-softkeyboard

Android keyboard change enter key


How can I change EditText keyboard enter key like this ?

enter image description here


Solution

  • The solution for me was adding these two lines in the XML of Edittext

    android:imeOptions="actionDone"
    android:inputType="text"
    

    Thx everyone.