使用百分比布局后fresco中SimpleDraweeView不能实现圆形的问题

使用百分比布局后,在xml中引入 SimpleDraweeView,然后alt+enter自动导入会导入如下:
 xmlns:fresco="http://schemas.android.com/tools"

此时,项目虽然不会报错,但是圆形的效果一直不出来,需要修改为如下:

  xmlns:fresco="http://schemas.android.com/apk/res-auto"

其实在官方文档中,对此也有说明。不仔细看文档惹得锅

你可能感兴趣的:(Android)