在 Android 中獲取編輯框(EditText)的內容可以通過以下幾種方式實現:
EditText editText = findViewById(R.id.editText);
String text = editText.getText().toString();
EditText editText = findViewById(R.id.editText);
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// 文本改變之前的操作
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// 文本改變時的操作
}
@Override
public void afterTextChanged(Editable s) {
// 文本改變之后的操作
String text = s.toString();
}
});
需要注意的是,如果是在Activity中獲取編輯框的內容,需要在布局文件中給編輯框設置一個唯一的id,然后使用findViewById()方法獲取編輯框的實例。 如果是在Fragment中獲取編輯框的內容,需要在Fragment的onCreateView()方法中使用view.findViewById()方法獲取編輯框的實例。