Does BadgeDrawable not work for views within a FrameLayout such as buttons, images, textviews etc.?
问题 I have this function in my main activity which doesn't display a badge: private fun setFindShiftBadge(state: HomeState) { val findShiftsBadge = BadgeDrawable.create(this) home_framelayout.foreground = findShiftsBadge findShiftsBadge.badgeGravity = BadgeDrawable.TOP_END findShiftsBadge.backgroundColor = resources.getColor(R.color.colorWhite) findShiftsBadge.badgeTextColor = resources.getColor(R.color.colorPrimary) findShiftsBadge.number = state.availableShifts.size } In the same activity, I