CopyPastor

Detecting plagiarism made easy.

Score: 0.8435962483711179; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2016-08-19
by Riyaz Parasara

Original Post

Original - Posted on 2014-01-16
by Shailendra Madda



            
Present in both answers; Present only in the new answer; Present only in the old answer;

In the layout xml, add android:capitalize="sentences"
The options for android:capitalize are following :
**android:capitalize="none"** : which won't automatically capitalize anything.
**android:capitalize="sentences"** : which will capitalize the first word of each sentence.
**android:capitalize="words"** : which will capitalize the first letter of every word.
**android:capitalize="characters"** : which will capitalize every character.



**Update:**
As android:capitalize is deprecated now need to use:

**android:inputType="textCapWords"**
In the layout `xml`, add `android:capitalize="sentences"`
The options for `android:capitalize` are following :
`android:capitalize="none"` : which won't automatically capitalize anything.
`android:capitalize="sentences"` : which will capitalize the first word of each sentence.
`android:capitalize="words"` : which will capitalize the first letter of every word.
`android:capitalize="characters"` : which will capitalize every character.
Update:
As `android:capitalize` is deprecated now need to use:
android:inputType="textCapWords"

        
Present in both answers; Present only in the new answer; Present only in the old answer;