How to create round corner image using volley library android

后端 未结 7 2277
旧巷少年郎
旧巷少年郎 2020-12-10 07:11

I am getting image urls from server with square shape I have to make it to rounded corner images.Actually I am using volley library ,I know how to create round corner images

7条回答
  •  孤街浪徒
    2020-12-10 07:24

    Volley has nothing to do with round corner image .

    You can make a simple circle with white border and transparent content with shape.

    // res/drawable/circle.xml

      
      
    
          
      
    

    Then make a layerlist drawable and put it as background to your networkimageview.

    // res/drawable/img.xml
    
    
    
    
       
       
    
    
    

    and put it as background to your networkimageview.

     
    

    You'll have something like that.

    enter image description here

提交回复
热议问题