B4A v6.80 adds several new features related to the ability to format rich strings. CharSequence is a native interface in Android SDK. A String is one implementation of CharSequence. There are other implementations of CharSequence that provide more features and allow us to format the string...
www.b4x.com
B4X:
Dim cs As CSBuilder
cs.Initialize
cs.Image(LoadBitmap(File.DirAssets, "myimage.png"), 40dip, 40dip, False).Append(CRLF).Append("Police")
cs.PopAll
btnImg.Text = cs