要检查TextView中的内容,可以使用以下代码示例:
TextView textView = findViewById(R.id.textView);
String content = textView.getText().toString();
if (TextUtils.isEmpty(content)) {
// 内容为空
} else {
// 内容不为空
}
String pattern = "[0-9]+"; // 数字格式
if (content.matches(pattern)) {
// 内容符合要求
} else {
// 内容不符合要求
}
String target = "Hello";
if (content.equals(target)) {
// 内容与指定字符串相等
} else {
// 内容与指定字符串不相等
}
以上是几种常见的检查TextView内容的方法,可以根据具体的需求选择合适的方法进行使用。