I am trying to make the editText that shows the text but not as editable type. I cant use textview there because i am using same component for entering the values. How to achieve it?
Any help is really appreciated and thanks in advance.
I am trying to make the editText that shows the text but not as
Share
editText.setFocusable(false);editText.setClickable(false);the two property which turn EditText to non focusable and unclickable which leads to a non editable Edittext