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
Finally Fixed this Using the EditText as per @Chintan Rathod advice.
//reference to @Chintan Rathod.
Code
EditText text=(EditText) findViewById(R.id.text); text.setText("hello"); text.setSelection(text.getText().length()); // reference to @Umer Farooq code.