Hello I am facing a problem with my edittext.
the xml of the Edittext is pasted below :
<EditText
android:id="@+id/edttxt_description_taskdescription"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/padding_large"
android:layout_marginTop="@dimen/margin_.5x"
android:background="@color/white"
android:lines="2"
android:gravity="top"
android:hint="@string/activity_task_description_name_hint"
android:imeOptions="actionDone"
android:singleLine="false"
android:inputType="textMultiLine|textCapSentences"
android:maxLength="85"
android:textSize="@dimen/text_16pixels" />
Issue : I want to auto capitalize the first letter of the EditText but it is not happening. Please help !
Note : I want a multiline EditText.