public class TextFieldL extends TextField {
public TextFieldL(Context context, AttrSet attrSet) {
super(context, attrSet);
setCursorChangedListener(new CursorChangedListener() {
@Override
public void onCursorChange(TextField textField, int cursorIndex, int cursorIndex2) {
}
});
}
}
需要自定义TextField ,设置setCursorChangedListener()事件, onCursorChange()的参数就是光标的位置。
public class TextFieldL extends TextField {
public TextFieldL(Context context, AttrSet attrSet) {
super(context, attrSet);
setCursorChangedListener(new CursorChangedListener() {
@Override
public void onCursorChange(TextField textField, int cursorIndex, int cursorIndex2) {
}
});
}
}
需要自定义TextField ,设置setCursorChangedListener()事件, onCursorChange()的参数就是光标的位置。
举报