Homescreen Shortcuts With Icons
Am trying to create a homescreen shortcut programmatically on android. So far I've been able to add the shortcut itself with the following code: Intent shortcutIntent = new Intent(
Solution 1:
You are trying to get bitmap from local resources (by using content provider).
To download Bitmap from server you should follow this:
Why is this image bitmap not downloading in Android?
Solution 2:
It seems like your application unable to access test.png. Make sure it exists. Maybe you can start with local storage rather than sd card.
Post a Comment for "Homescreen Shortcuts With Icons"