我没有找到有关如何在TextView中获取值的第一个字母的文档?

最佳答案

很容易,

String strTextview = textView.getText().toString();
strTextView = strTextView.substring(0,1);


另外,您也可以尝试以下方式

char firstCharacter = textView.getText().toString().charAt(0);

09-27 02:12