java.lang.IllegalArgumentException: Invalid Region.Op - only INTERSECT and DIFFERENCE in Button background failure

后端 未结 8 1938
自闭症患者
自闭症患者 2020-11-27 20:16

android Button background failure

when I try to add

android:background=\"@drawable/roundedbutton\"

into the .xml

&         


        
8条回答
  •  情深已故
    2020-11-27 20:37

    This is what fixed it for me:

    .setCropShape(Build.VERSION.SDK_INT >= Build.VERSION_CODES.P ? CropImageView.CropShape.RECTANGLE : CropImageView.CropShape.OVAL)
    

提交回复
热议问题