I am new in android development and I want to create a custom android control (an edittext in a baloon with image on the different positions (left or right)).
Image should be changed if user inputs something in edittext.
In all samples that I've seen code for image switching written in Activity subclass, but I don't want to repeat this code many times in application. I just want to create a visual control or view which would do all routine in background.
Ideally it should be something like this:
- I write a layout file with all graphical components (edittext and image)
- I write somewhere (Where?) code which would switch images when it's requred (when user types some in edittext and when user clears edittext)
- Now control are ready and I can write in layout file and I shouldn't write code for image switching. Control makes it.
Can someone describe how should I implement this? Is it correct for android? Should I use any other way for corresponding to android best practices? If yes, can someone write a sample?
Thank you.