Android: add images from url to custom tooltip icon in search widget

As the title says, I want to add some images from the url as the icons in the custom tooltips show up in the search widgets. I see this link on android.com that I have to use the Uri, but I don't know how.

+3


source to share


1 answer


You can use this:

Uri.parse("android.resource://" + YOUR_APP_PACKAGE + "/" + resourceId);

      



eg:.

Uri.parse("android.resource://com.mycompany.myapp/" + R.drawable.suggest_icon);

      

0


source







All Articles