Convert String to Drawable

后端 未结 8 2304
我在风中等你
我在风中等你 2021-02-20 12:31

I want to raise a notification showing an icon in the status bar - so far so good, but actually I would like this icon to be a 3 character String.

So my question is: Is

8条回答
  •  庸人自扰
    2021-02-20 13:12

    try  {
    
        InputStream inputStream = new URL(Your imageWebAddress).openStream();
    
        drawable = Drawable.createFromStream(inputStream, null);
        inputStream.close();
      }
      catch (MalformedURLException ex) { }
      catch (IOException ex) { }
      layout.setBackground(drawable);
    

提交回复
热议问题