Ashish Bahl

Results 3 comments of Ashish Bahl

I used this: `editor.setOnTextChangeListener(new RichEditor.OnTextChangeListener() { @Override public void onTextChange(String text) { if (!text.isEmpty()) { mScroll.post(new Runnable() { @Override public void run() { mScroll.fullScroll(View.FOCUS_DOWN); } }); } else { mScroll.post(new...

> > Thanks, @abahl817 > > But still it ruins everything when you try to edit in between text > > The best thing I come up with was to...