Android Question Largest Font

merlin2049er

Well-Known Member
Licensed User
Longtime User
Hi, anyone know what the largest possible sized font I can use on a 10" tablet?

Thanks,
Joe
 

NJDude

Expert
Licensed User
Longtime User
Just resize the font until you're happy with it, you could size a font all the way to 2000 if you want :D
B4X:
Dim RidiculousSize As Float
 
RidiculousSize = 2000
 
Label1.TextSize = RidiculousSize
The code above has too many lines but I just wanted to make a point :p
 
Upvote 0
Top