2012-10-15 59 views
0

我要動態地,只要我按ENTER數字鍵盤上所出現當我按下Edittext1.動態EDITTEXT

此外,我想利用Edittext1價值和DONE採取Edittext1值將其乘以Edittext2並將結果顯示爲Edittext1,並在Edittext3上顯示結果,反之亦然。

我想知道我應該使用什麼類,以及如何去做這件事。

+2

您是否使用過Google?你有沒有發現像TextWatcher這樣的東西有幫助? – kosa

+0

使用http://developer.android.com/reference/android/widget/TextView.OnEditorActionListener.html – njzk2

回答

2
editText.addTextChangedListener(new TextWatcher() { 
    public void afterTextChanged(Editable s) { 

    } 

    public void beforeTextChanged(CharSequence s, int start, int count, 
        int after) { 
    } 

    public void onTextChanged(CharSequence s, int start, int before, 
        int count) { 
    } 
});