Kasun Kanchana
Member
Hello, I'm using [B4X] Cross platform chat layout example Written by Erel for my chat app. I've changed the "BuildMessage" as below,
The problem is that BBCodeView1_LinkClicked (URL As String) event is not rising when I clicked the link of BBCodeView.
Can anyone help me to solve this issue?
B4X:
Private Sub BuildMessage (Text As Object, User As String,timeX As String) As String
Dim output As String
output=$"[Alignment=Left][b]${User}[/b]${CRLF}${Text}[url="https://www.b4x.com"] Link [/url]${CRLF}[color=#787878][TextSize=10]${DateTime.Time(timeX)}[/TextSize][/color][/Alignment]"$
Return output
End Sub
The problem is that BBCodeView1_LinkClicked (URL As String) event is not rising when I clicked the link of BBCodeView.
Can anyone help me to solve this issue?