Disabling Edittext item in Android is not straightforward, because the setDisabled method does allow text input by user.
To prevent user editing use one of the followings:
setKeyListener(null);
or
android:inputType="none"
Source: Stackoverflow.com