Android Question Text Style

Tjitte Dijkstra

Member
Licensed User
Longtime User
It is quite easy to change the textcolor at runtime, but is it also possible to change the Text Style at runtime? (I managed to change it at designtime in de the Designer)
Thnx
Tjitte Dijkstra
 

Mahares

Expert
Licensed User
Longtime User
Dim edt as edittext
upload_2014-11-8_16-22-41.png
 
Upvote 0

Cableguy

Expert
Licensed User
Longtime User
Dim font as typeface
Font = typeface.new(......)
or Font = typeface. LoadFromAssests(....)

Then refresh your text...
I do it with LoadFromAssets in order to user other font files than the built-in ones
 
Upvote 0
Top