In my Android application, on the edit page of my profile, when I run the action, the first edittext field is focused (blinking with the cursor) and the keyboard is displayed.
How can I focus on starting (flashing cursor) but not showing the keyboard? If this is not possible, just do not focus the edittext at startup.
Thanks.
<EditText android:id="@+id/textinput_firstname" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:inputType="textPersonName" android:text="test" />
source share