我没有找到有关如何在TextView中获取值的第一个字母的文档? 最佳答案 很容易,String strTextview = textView.getText().toString(); strTextView = strTextView.substring(0,1); 另外,您也可以尝试以下方式char firstCharacter = textView.getText().toString().charAt(0);