在 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()方法获取编辑框的实例。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: Android实现淘宝购物车