Disable soft-keyboard from EditText but still allow copy/paste?
After hours and hours of research, I finally found a solution that works for all API versions. Hope this saves someone’s time. If you are developing for API >= 11, the solution is simple, either: 1) Add the two properties below in the xml file of EditText android:inputType=”none” android:textIsSelectable=”true” or 2) Programatically do the below … Read more