First of all, in your statement about your activity in a manifest file declaration like this
<activity android:name="Map" android:windowSoftInputMode="stateHidden">
your keyboard is hidden from this property, after that you declare the imeOption property in the main.xml edittext file like this
<EditText android:id="@+id/edttexttitle" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:layout_marginTop="5dp" android:hint="@string/tasktitle" android:imeOptions="actionNext" android:inputType="text" android:textSize="@dimen/font_size_medium" android:textColor="@color/darkgray1" />
this code is for your first edittext, if more than one, and if only one edittext, then you need to change imeOption edittext, for example
android:imeOptions="actionGo"
user1496130
source share