How To Download An Image On Android Wear?
I have an ArrayList of Serialization objects on my handheld. I found a solution to send it to my wearable device. Can I send custom objects to Android Wear? In my Object I have th
Solution 1:
You can't download images directly from the Wear as there's no direct internet access.
However you're on the right path by downloading images on mobile (e.g. using Picasso), then transferring them to the Wear via an Asset.
There's a tutorial with all the code required on how to send an image using an Asset in the Android training section:
https://developer.android.com/training/wearables/data-layer/assets.html
Post a Comment for "How To Download An Image On Android Wear?"