I\'m trying to get the favicon of the url the user enters, for example
_url = \"google.com\";
I use HttpUrlConnection to get the Bitmap of
Another answer that is even 'easier'.
Just make the user enter the url (including protocol) for their favicon and validate that url returns a favicon. If not then display a validation error back to the end user.
Following agile principals, do the least amount of work and see what works. If the one plan doesn't work, then try something different.