Editextリスニングカーソル位置


詳細
プロジェクトの必要性のため、カーソルの位置変化をリアルタイムで傍受する必要があり、ネット上で提案されているのはTextWatcherとonTouchListenerでcontentTextを呼び出す.getSelectionStart()は、取得した前回の場所です.
 
onSelectionChangedを書き換えるだけで最新のカーソル位置を取得できます.
 
public class NoteContentEditText extends EditText {

	public NoteContentEditText(Context context, AttributeSet attrs) {
		super(context, attrs);
		// TODO Auto-generated constructor stub
	}

	@Override
	public void onDraw(Canvas canvas) {
		super.onDraw(canvas);
	}
	
	@Override
	protected void onSelectionChanged(int selStart, int selEnd) {
		// TODO Auto-generated method stub
		super.onSelectionChanged(selStart, selEnd);
		Logg.D("onSelectionChanged selStart "+selStart+" selEnd "+selEnd);
	}
}