Is there a way to download just the icons that are stored in a particular application from Google Play/Market without downloading the entire APK and installing it?
|
Nope There is no official API for market content. Be it to retrieve icons or anything else. If you are just interested in getting the image files you can download them manually via the web front end to the Market. But I wouldn't write code to do this, as it is very likely that they will make a change to the web front end that will result in your code breaking. p.s. I am no lawyer, but also I don't think there is very much that you would be "allowed" to do with these images even if you did download them (without permission from each developer of course) |
|||||||||||
|
|
You can do this but it would require downloading he page source and then parsing it. What you could do is first download the webpage, i like JSoup. Like
Then you should parse that document for the following tag ""
This path variable should be the path for the image to download. I have not tested this. |
|||
|
|
|
You could create a Yahoo Pipes like this http://kcy.me/hylg it will parse the page for you and extract a JSON in wich you could read the sinlge image URL. You can parameterize the pipe in order to receive the link to the app you want to extract the image. |
|||
|
|
