Hello,
It would be usefull if we could set max lines for ellipsize(not just single line).
This can be done only through code:
Thank you for your time.
It would be usefull if we could set max lines for ellipsize(not just single line).
This can be done only through code:
B4X:
Sub SetEllipsize(TextView As Label)
Dim r As Reflector
r.Target = TextView
r.RunMethod2("setMaxLines",4,"java.lang.int")
r.RunMethod2("setEllipsize", "END", "android.text.TextUtils$TruncateAt")
End Sub