How to load URL image in android wear?

时光总嘲笑我的痴心妄想 提交于 2019-12-05 01:26:10

I think you should use, DaVinci for image loading in Wearable,

DaVinci.with(context).load("Your Url").into(imageView);

Make sure you use the same playservices version as the library,

You will be able to integrate the same by adding this to your gradle:

wear :

compile ('com.github.florent37:davinci:1.0.3@aar'){
    transitive = true
}

Mobile:

compile ('com.github.florent37:davincidaemon:1.0.3@aar'){
     transitive = true
}

Hope you will get what you want.

The issue is due to socket time out...

You can resolve it using Glide itself. You just need to use Glide with OKHttp3, and set Timeout Limit for OkHttpClient.

In your module dependency

compile 'com.github.bumptech.glide:glide:3.7.0'
compile ('com.github.bumptech.glide:okhttp3-integration:1.4.0'){
    exclude group: 'glide-parent'
}

Customize glide settings

public class MyGlideModule implements GlideModule {
   @Override
   public void applyOptions(Context context, GlideBuilder builder) {

   }

   @Override
   public void registerComponents(Context context, Glide glide) {

       OkHttpClient.Builder builder = new OkHttpClient.Builder();

       // set your timeout here
       builder.readTimeout(30, TimeUnit.SECONDS);
       builder.writeTimeout(30, TimeUnit.SECONDS);
       builder.connectTimeout(30, TimeUnit.SECONDS);
       OkHttpUrlLoader.Factory factory = new    OkHttpUrlLoader.Factory(client);
       glide.register(GlideUrl.class, InputStream.class, factory);
   }
}

In manifest put below code

 <meta-data
        android:name="YourPath.MyGlideModule"
        android:value="GlideModule" />
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!