Is this possible to interchange a TextView and an EditText. Like display the text when needed, but allow editing when needed. Is there a method (as in NON-XML) way of editing a TextView or non-editing a EditText?
Is this possible to interchange a TextView and an EditText. Like display the text
Share
Put both in your layout in the same spot. Make one invisible. Toggle visibility as needed.
Or, put both as children of a
ViewSwitcherorViewFlipper, and use that to switch between them.No, AFAIK.