Android Question Right To left Layout in B4XDialog?

Hi All !
I couldn't find any .Gravity or .TextAlign property for showing message in RTL Languages.
Is there a way for showing right to left messages in B4xDialogs?
How about other B4XViews ?
 
Is it a good solution ?
B4X:
    Dim RTL_lbl As Label
    RTL_lbl.Initialize("")
    RTL_lbl.Width = 75%x
    RTL_lbl.Height = 20%y
    RTL_lbl.TextSize = 14
    RTL_lbl.Gravity = Bit.Or(Gravity.CENTER_VERTICAL, Gravity.RIGHT)
    RTL_lbl.Text =  $"لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است.
    چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است و برای شرایط فعلی تکنولوژی مورد نیاز
    و کاربردهای متنوع با هدف بهبود ابزارهای کاربردی می باشد."$
    Dialog.ShowCustom(RTL_lbl,"بله","خیر","لغو")
 
Upvote 0
Top