All Questions
Tagged with capitalize android
7 questions
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 ...
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.
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-->İ ş-->Ş ğ-->Ğ ü-->Ü ö--...
-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 ...
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/...
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"
...
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. ...