It is based on BCTextEngine and it supports rich strings set with BBCode: https://www.b4x.com/android/forum/threads/b4x-bctextengine-bbcodeview-text-engine-bbcode-parser-rich-text-view.106207/#content
Hi to every body Definition "Material icons" in buttons and labels should establish a large font size, however in the tooltip I would like a smaller font. Is it possible to apply a different font size to the tooltip and the view? Or how create a css entry for all tooltips? Thanks
Something which has been bugging me recently and finally got round to looking at it. I think the tooltip inherits it's font settings from the control. They can look very inconsistent if using FontAwesome or Material Icons. So to make them consistent: Sub SetToolTipFont(N As Control,F As...
Thanks! will use this in my project. But, what i want is, when i move the cursor over the item in customlistview, the tooltip will pop-up and display the value of the item. Because there is no mouseover method in customlistview.
For i = 1 To 100
CustomListView1.AddTextItem(i, i)
Dim lbl As Label = CustomListView1.GetPanel(CustomListView1.Size - 1).GetView(0)
lbl.TooltipText = "Item: " & i
Next