我有一个运行良好的小提示计算器应用程序,我正在尝试实现一个清除按钮,但是使用我尝试的代码它只是关闭了应用程序,我将如何重新开始代码......这是我尝试过的以下..
clearButton.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
percentage = 0;
output = 0;
output1 = "";
TextView textView = null;
textView.clearComposingText();
percentageInp = 0;
billAmount = 0;
myEditField.setText("");
myEditField2.setText("");
return;
}
});