I have an ImageButton (btnOpen), and I want to change its background, but just for a second, for example.
I know the method to do this (I use btnOpen.setBackgroundResource(my_resource);
), but how can I do that without making my UI non-responsive?
What's the best and simplest way, do I have to use something like Handler or runOnUIThread?
Thanks for help.