tomergoldst / tooltips

Simple to use library for android, enabling to add a tooltip near any view with ease
835 stars 97 forks source link

builder.setTextSize(11); is not avaliable in 1.0.10 #41

Closed Kiru3014 closed 2 years ago

Kiru3014 commented 2 years ago

Hi i have update to 1.0.10 in that builder.setTextSize(11); is not available hot test text size in 1.0.10

Kiru3014 commented 2 years ago

i don't want to down grad because in 1.0.10 we have customer font face so help me to know how to set text in 1.0.10

tomergoldst commented 2 years ago

You should define a text style and use it

  <style name="TooltipTextAppearance">
        <item name="android:textColor">@android:color/white</item>
        <item name="android:textSize">16sp</item>
    </style>
builder.setTextAppearance(R.style.TooltipTextAppearance);

see styles.xml in the demo app