Android

How to make EditText not editable but scrollable

Posted on

EditText not Editable but Scrollable When we need to show long text like Terms and conditions in EditText. We need to allow scrolling and it should not be editable. For this I tried in XML set EditText attributes to show vertical scrollbars android:scrollbars=”vertical” And then to make EditText not editable i tried different ways like android:inputType=”none” not worked, and […]