android-target-tooltip
android-target-tooltip copied to clipboard
How can I set the textSize for the tooltip?
Hello @androidlab. It has become late, but I hope this helps.
To change textSize, you need to make custom style like below.
<style name="TooltipLayout">
<item name="ttlm_textStyle">@style/TooltipText</item>
</style>
<style name="TooltipText">
<item name="android:textSize">20sp</item>
</style>
then set this style programmatically.
Tooltip.Builder(context)
.styleId(R.style.TooltipLayout)
...