在Android中,EditText是一个用于输入文本的UI组件。以下是使用EditText的一些常见方法:
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入文本"
android:inputType="text" />
EditText editText = findViewById(R.id.editText);
String text = editText.getText().toString();
editText.setText("Hello World");
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) {
// 文本变化后回调
}
});
这些是使用EditText的一些基本方法,你可以根据自己的需求进行扩展和使用。