Android Question BCTextEngine - leverage urls for different functions ?

PumaCyan

Member
Licensed User
I'm using bctextengine. for the description of the label is drawn below...

How to grant different access when there are 2 different mode urls...

the meaning of my sentence is, when this red url returns to the registration activity to edit the number, then for this blue url to reprocess send otp
 

Attachments

  • Screenshot_20220530-060003.png
    Screenshot_20220530-060003.png
    99.6 KB · Views: 79
  • Screenshot_20220530-054702.png
    Screenshot_20220530-054702.png
    94.1 KB · Views: 84

PumaCyan

Member
Licensed User
The problem is resolved

I just add a branching control in the click URL, according to the sentence in bctextengine... šŸ˜…

BBLink_URL:
Private Sub BBLabel_LinkClicked (URL As String)
    if bblabel.text = "...." then
    'go activity A...
    else
    'go activity B....
    end if
End Sub
 
Upvote 0
Top