NinePatchDrawable does not get padding from chunk

后端 未结 4 1421
鱼传尺愫
鱼传尺愫 2021-02-06 03:59

I need help with NinePatchDrawable:

My app can download themes from the network. Almost all things work fine, except 9-Patch PNGs.

final Bitmap bubble =          


        
4条回答
  •  被撕碎了的回忆
    2021-02-06 04:51

    A bit late to the party, but here is how I solved it:

    I use the decoder method that NinePatchDrawable provides, it reads the padding correctly:

         var myDrawable = NinePatchDrawable.createFromStream(sr, null);
    

提交回复
热议问题