Android Question [solved] Label with image

Livio F

Member
Licensed User
Longtime User
Do you know if it is possible to have a label with image and text with this disposition?
 

Livio F

Member
Licensed User
Longtime User
BCTextEngine doesn't currently support such layout. WebView is probably the only solution for this.
Thank you Erel.

B4X:
    Dim HTML As String
    HTML=$"
<HTML>
<BODY>
<img src=${xui.FileUri(File.Dirassets, "logo.png")} align="LEFT" width="100">Use the Home Icon To Return To the Account Summary. Use the Home Icon To Return To the Account Summary.
</BODY>
</HTML>
"$
    WebView1.Enabled=True
    WebView1.Visible=True
   'WebView1.Invalidate  * No need -> post #6
    WebView1.LoadHtml(HTML)
 
Last edited:
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…