I have a user profile screen in my android app and there i am showing user information while registering they provided and a edit button to modify their information.
You can disable it in your xml
android:editable="false"
android:inputType="none"
And enable it programatically in the onClick()
of the edit Button
EditText mEdit = (EditText) findViewById(R.id.yourid);
mEdit.setEnabled(true);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With