Di sini saya telah menulis artikel mendetail tentang topik tersebut, karena kami memiliki beberapa opsi, Kapitalisasi Huruf Pertama String di Android
Metode untuk Kapitalisasi Huruf Pertama String di Java
public static String capitalizeString(String str) {
String retStr = str;
try { // We can face index out of bound exception if the string is null
retStr = str.substring(0, 1).toUpperCase() + str.substring(1);
}catch (Exception e){}
return retStr;
}
Metode untuk Memanfaatkan Huruf Pertama String di Kotlin
fun capitalizeString(str: String): String {
var retStr = str
try { // We can face index out of bound exception if the string is null
retStr = str.substring(0, 1).toUpperCase() + str.substring(1)
} catch (e: Exception) {
}
return retStr
}
Menggunakan Atribut XML
Atau Anda bisa menyetel atribut ini di TextView atau EditText di XML
android:inputType="textCapSentences"