I wanted to display blinking cursor at the end of the text in TextView .
I tried by android:cursorVisible=\"true\" in TextView But no go .
android:cursorVisible=\"true\"
Even i t
I think you should go for EditText. You can set its background and make it appears like TextView with below code.
EditText
TextView
EditText edt = (EditText) findViewById(R.id.edtText); edt.setSelection(edt.getText().length());
Output