Dear All, After i checked tutorial of Text files, So i made a code that i can read the help from a files stored in "Files" folder instead typing a very long help in Msgbox..
B4X:
Sub Activity_Create(FirstTime As Boolean)
Activity.AddMenuItem("HELP","MenuHelp")
End Sub
Sub MenuHelp_click
Msgbox(File.ReadString(File.DirAssets, "help.txt"), "Help")
End Sub
Msgbox doesn't allow you to change the colors. You can use RichString library with a standard Label to show colored text, though it will be simple to create an HTML file and load it to WebView.