Bryant
Bryant
Is it possible to have such kind of effect in Android: https://github.com/tanjinbd/3d-Tilt-Animation
Does it support the latest android version 11 and above?
@slavzilla , I have used: fun ImageView.loadCircularImage(uri: String?, width: Float){ val options = RequestOptions() .placeholder(android.R.color.transparent) Glide.with(context).setDefaultRequestOptions(options).load(uri) .apply { if (width > 0){ apply(RequestOptions.bitmapTransform(CropCircleWithBorderTransformation(context.dp2px(width), Color.WHITE))) } else { apply(RequestOptions.circleCropTransform()) } }...
I dont think its an issue of using same asset for different buttons, at least by that you are making the system efficient and fast!
Same happening to me, anyone has fix??
Right! It fixed my issue; but its also crashing on Samsung One UI; any fix on that?