tooltips
tooltips copied to clipboard
Simple to use library for android, enabling to add a tooltip near any view with ease
I'm Facing the Wrong Tooltip position issue. **Please check this link to show Screenshot: https://github.com/tomergoldst/tooltips/assets/98881383/ca7c0a24-8743-486a-ab18-21c9521172d9)** I want to show the tooltip on the Highlighted Blend Option on Top But it...
I am showing the tooltip in a recycler view on cells . When a tooltip text is long, a tooltip is shown on a cell but a portion of it...
java.lang.StringIndexOutOfBoundsException: length=0; index=0 at java.lang.String.charAt(Native Method) at com.tomergoldst.tooltips.UiUtils.isRtl(UiUtils.java:28) at com.tomergoldst.tooltips.UiUtils.isRtl(UiUtils.java:24) at com.tomergoldst.tooltips.ToolTipsManager.create(ToolTipsManager.java:102) at com.tomergoldst.tooltips.ToolTipsManager.show(ToolTipsManager.java:69)
Tooltip view going outside of view. How fix this? code: ``` var toolTipBuilder = ToolTip.Builder( context, hint, root, getString(R.string.hint), ToolTip.POSITION_ABOVE ) toolTipBuilder.setBackgroundColor(ContextCompat.getColor(this, R.color.blue)) toolTipBuilder.setTypeface(ResourcesCompat.getFont(this, R.font.gf_bold)!!) hint.setOnClickListener { toolTip = toolTipsManager.show(toolTipBuilder.build())...