I develop keyboard using EditText and Button. When you click on the button, the text field is filled with the corresponding letter. I made the field inactive so that no other letters could be entered, but at the same time the text can be selected and copied.
android:enabled="false" android:textIsSelectable="true" However, with this code, the cursor disappears. And I need it to remain visible in order to know from which place you can erase or add text. How can I make the cursor visible?