Android TextView getText()方法

时间:2014-08-18 13:08:21

标签: android-layout

假设我已经声明了TextView用户名。并且我没有通过 username.setText()为其分配任何字符串,在此之前,如果我调用 username.getText()方法,它会返回吗?< / p>

1 个答案:

答案 0 :(得分:0)

它会返回null,因为那里什么都没有。 .getText()将返回TextView正在显示的文本。

我首先检查TextView用户名是否为null,如下所示:

if (username.getText() != null){
 //TextView not null
 //Do something
}

我希望这对你有所帮助。