我有一個小的小技巧計算器應用程序,工作得很好,我試圖實現一個清晰的按鈕,但與代碼我試過它只是關閉應用程序,我將如何去開始這裏的代碼結束了...就是我下面嘗試..重新啓動應用程序W/O關閉它
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;
}
});
這解決了一個問題,所以如何將我重新開始呢? – PrommeringsDisplay 2012-08-02 02:12:51
或清除所有變量; – PrommeringsDisplay 2012-08-02 02:13:08
是的,它的工作,exept如果其中一個文本字段爲空 – PrommeringsDisplay 2012-08-02 02:25:38