You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a custom layout for the tooltip that contains a scrollView that has a textView inside.
When I set elevation the shadow is cut at the bottom of the tooltip (see attached screenshot)
Please complete the following information:
Describe the Bug:
I am using a custom layout for the tooltip that contains a scrollView that has a textView inside.
When I set elevation the shadow is cut at the bottom of the tooltip (see attached screenshot)
val balloon: Balloon = Balloon.Builder(context)
.setLayout(R.layout.balloon_layout)
.setArrowSize(15)
.setWidth(400)
.setArrowColorResource(R.color.white)
.setBackgroundColorResource(R.color.white)
.setArrowConstraints(ArrowConstraints.ALIGN_ANCHOR)
.setArrowOrientation(arrowOrientation)
.setArrowPosition(0.5f)
.setTextSize(15f)
.setCornerRadius(6f)
.setElevation(5)
.setAlpha(1.0f)
.setTextColor(ContextCompat.getColor(context, R.color.steel))
.setBalloonAnimation(BalloonAnimation.FADE)
.build()
The text was updated successfully, but these errors were encountered: