I’m developing Contact Application, which adds Email address, phone number. I have to create edit text dynamically in code itself. I don’t know how and where to implement this logic, suggest any help would be grateful.
I’m developing Contact Application, which adds Email address, phone number. I have to create
Share
You can create it like so:
This can be implemented anywhere on the UI thread; a click listener, an
onCreatemethod, and everything in between.There is a more generic example in this question, and a good rundown of these processes in this blog.