I have image in server url then i'm passing and displaying in to Card. I have done this in android using LoaderImageView library and displaying but in Glass i'm passing the url link to card. But i got this error "The method addImage(Drawable) in the type CardBuilder is not applicable for the arguments (String)"
Code:
 public static Drawable drawableFromUrl(String url)  {
        Bitmap x;
        try {
             HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
             connection.connect();
             InputStream input = connection.getInputStream();
             x = BitmapFactory.decodeStream(input);
             return new BitmapDrawable(x);
             } catch(MalformedURLException e) {
            //Do something with the exception.
        }
        catch(IOException ex) {
             ex.printStackTrace();
       }
        return null;
    }
    View view = new CardBuilder(getBaseContext(), CardBuilder.Layout.TITLE)
    .setText("TITLE Card")
    // .setIcon(R.drawable.ic_phone)
    .addImage(drawableFromUrl(link))
    .getView();
 
     
    