TourGuide
TourGuide copied to clipboard
Change the font-family and other attributes
Is there a way to change the font-family attributes for the tooltips. I tried using setCustomView, but the new tooltip only displays an empty black view. Is there a set of ids and layout I should be using for the custom view?
I have the same problem. image link https://ibb.co/nGYUwk code is: its in Kotlin
val act = context
val layout = LinearLayout(act)
layout.orientation = LinearLayout.VERTICAL
layout.backgroundColor = Color.WHITE
val name = EditText(act)
name.textColor = Color.BLACK
val button = Button(act)
button.text = "button 1"
val button2 = Button(act)
button2.text = "button 2 button 2 button 2"
button2.textColor = Color.BLUE
layout.setBackgroundColor(Color.WHITE)
layout.addView(name)
layout.addView(button)
layout.addView(button2)
return layout