我还没有找到关于如何在TextView
中获取值的第一个字母的文档?
答案 0 :(得分:5)
非常简单,
String strTextview = textView.getText().toString();
strTextView = strTextView.substring(0,1);
或者您也可以尝试以下方式
char firstCharacter = textView.getText().toString().charAt(0);
答案 1 :(得分:3)
要获得第一个字母,您必须拨打此电话:
char firstCharacter = myTextView.getText().charAt(0);
答案 2 :(得分:2)
使用下面的方法。提供TextView中的字符串作为参数。
public String firstStringer(String s) {
String str= s.substring(0, Math.min(s.length(), 1));
return str;
}
答案 3 :(得分:1)
getText().toString();
String textViewContent = textViewInstance.getText().toString();
和第一个字母textViewContent.charAt(0)
答案 4 :(得分:1)
您可以使用此
TextView tv = (TextView) findViewById(R.id.textview);
String frstLetter = tv.getText().substring(0, 1);
答案 5 :(得分:1)
从TextView中获取字符串的内容:
String content = textView.getText().toString();
获取第一个字符
char first = content.charAt(0);
答案 6 :(得分:1)
试试这个
String value = text.getText().toString();
String firstTen = value.substring(0, 1);