Hello I am trying to make EditText
to multi line and first letter should be type as in capital which I am doing using android:inputType="textCapSentences"
but after setting to input type to textCapSentences
it set first letter in capital but EditText
is single line only. Can you please help me to make EditText
to multiline plus first letter should be type in capital
Here it is current EditText
<EditText
android:id="@+id/commentsEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_vertical_margin"
android:background="@android:drawable/editbox_background"
android:inputType="textCapSentences"
android:gravity="top"
android:hint="@string/comments"
android:lines="5" />
Just add this android:inputType="textMultiLine" in XML file on relevant field. Save this answer.
So you can simply take the text and append the text with "/" as first character. You get what you want. Text with first character "/". This might be of some help: [Put a constant text inside EditText which should be non-editable][1] [1]: stackoverflow.com/questions/14195207/…
You can add the android:textAllCaps="true" property to your xml file in the EditText. This will enforce the softinput keyboard to appear in all caps mode.
Have you try below code :-
<EditText
android:id="@+id/commentsEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
android:inputType="textCapSentences|textMultiLine"
android:gravity="top"
android:hint="@string/comments"
android:lines="5" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With