How to enable cursor for EditText if we already hide the soft keyboard. i done my code like that cursor blinking but cursor can't not perform cut/copy/paste and deleting character action.
I enable only cursor i done by using this code
EditText mEt = (EditText) findViewById(R.id.xEt);
if (Build.VERSION.SDK_INT >= 11) {
mEt.setRawInputType(InputType.TYPE_CLASS_TEXT);
mEt.setTextIsSelectable(true);
} else {
mEt.setRawInputType(InputType.TYPE_NULL);
mEt.setFocusable(true);
}