清除按钮android工作室中的文本

时间:2016-09-22 08:34:26

标签: android

这是我的代码

button.getText()清除(); error in clear()

clear是红色,android studio无法识别。请帮我清除按钮中的文字

2 个答案:

答案 0 :(得分:1)

你应该使用

  

button.setText( “”);

答案 1 :(得分:0)

button.getText().clear()

.getText()用于从按钮获取文本(String)以便将其更改为 button.setText(“”)从按钮设置文本的功能.setText(“更改文本”)