Don’t forget to add
<item name=”android:inputType”>text</item>
or
<item name=”android:inputType”>textPassword</item>
to your EditText’s style
Directly on XML:
<EditText
style=”@style/PasswordEditText”
android:id=”@+id/login_et_password”
android:layout_below=”@+id/login_tv_password”
android:inputType=”text”
android:imeOptions=”actionDone”
/>