Skip to main content

All Questions

Tagged with
0 votes
1 answer
128 views

Edittext not accepting a capital first letter

I have a simple app with Edittexts which now (since being forced by android studio to upgrade my emulator to API 27) will simply not accept a capital letter as the first letter. It is still working on ...
Mark Palmer's user avatar
4 votes
5 answers
21k views

How to capitalize the first letter in custom textview?

In Custom TextView suppose if first character as a number then next character would be a character. How to find the first character amoung numbers.
Dhivyaseetha_Kumba's user avatar
0 votes
1 answer
118 views

android:capitalize is not capitalising turkis characters.

I have an edittext and I need to capitalize all characters I entered to the edittext but Its not changing the turkish characters to uppercase. The Characters not working are i-->İ ş-->Ş ğ-->Ğ ü-->Ü ö--...
Burak Akdeniz's user avatar
-2 votes
2 answers
189 views

How to capitalize each letter after a special letter in android?

First of all, please don't mark it as duplicate. I have a very specific problem. I have to capitalize each word's first letter. Problem is that I can't find-out when a word start. For example, I ...
Harish Godara's user avatar
4 votes
4 answers
17k views

Capitalize first letter of TextView in an Android layout xml file

I have a TextView in a layout xml file like this: <TextView android:id="@+id/viewId" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/...
qwertzguy's user avatar
  • 17.5k
3 votes
4 answers
4k views

Android Capitalize characters not working in phone

in my app, I want to allow the user to enter only upper case letters. So I used capitalize property. This is one part of code <EditText android:id="@+id/et5" android:layout_width="140dp" ...
Linga's user avatar
  • 10.5k
6 votes
7 answers
13k views

Android EditText Capital Characters

I have an edittext and I want any character that I type in edittext show in Capital letter. I have used this: edittext.setInputType(InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS); But it is not working. ...
rizzz86's user avatar
  • 3,990