Android Question B4XFloatTextField question

cwt

Active Member
Licensed User
Longtime User
I am converting an app that used all EditText fields to use B4XFloatTextField for data entry.

How do I remove or disable the floating hint text so it is not visible? The floating hint is partially covered by the entered text. I only want the main hint to show when nothing has been entered into the text field.
 

sirjo66

Well-Known Member
Licensed User
Longtime User
You can try with:

B4X:
B4XFloatTextField1.HintLabelSmallOffsetY = -60dip
B4XFloatTextField1.Update

or

B4X:
B4XFloatTextField1.SmallLabelTextSize = 0
B4XFloatTextField1.Update
 
Upvote 0
Top