程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> text-Android中怎樣獲取動態添加EditText的內容

text-Android中怎樣獲取動態添加EditText的內容

編輯:編程綜合問答
Android中怎樣獲取動態添加EditText的內容

RT,在Android中如何獲得動態添加EditText的輸入文本內容?

最佳回答:


search是一個TextView,類似於這樣處理就行了:
search.addTextChangedListener(new TextWatcher() {
//輸入後的串 qr 0 1 2
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
Message msg=Message.obtain();
msg.obj=s;
msg.what=0x123;
handler.sendMessage(msg);
Log.i("222", "onTextChangedCharSequence "+s+" start "+start+" before "+before+" count "+count);
}
//輸入前的串 q 0 1 2 after是此次添加文字的總數
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
Log.i("222", "beforeTextChangedCharSequence "+System.currentTimeMillis());
}
//輸入後的串 qr
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
Log.i("222", "afterTextChangedEditable "+System.currentTimeMillis());

        }
    });
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved