Linkify Extension - Detect Links

Hello guys, This is a simple extension which highlights the links, phone numbers and email address from Label.

Blocks-

blocks (1)

Download

in.vedang.Linkify.aix (5.4 KB)

Screenshot -

After clicking on highlighted links it will open.
Thank you :grin:

27 Likes

Great work ! :+1:

3 Likes

Thanks @MohamedTamer :kissing_heart:

3 Likes

Nice extension .:+1:

3 Likes

Nice job @Techno_Vedang. This is a great first extension. I'll be using it. Does the link open in a new window when you click on it? (like in chrome? or Windows?) :smile: :+1:
And what did you use to build the extension? I want to start building one too.

2 Likes

A handy little tool. Thank you for your contribution :+1:

2 Likes

@Techno_Vedang
Is it possible to direct hyperlinks to the app's (named) webviewer, instead of the external browser ?

2 Likes

Thank you very much

Thanks for these kind words. Your words are motivating me a lot.

Extension works on android. Yes it opens in new window of chrome.

Java is used to make extensions. You can read the extension documentation of ai2.

Best whishes to you buddy.

Thank you very much @TIMAI2 :heart_eyes::heart_eyes:

Hmm I don't think it is possible coz I am using Linkify class. Still I will research on it and thanks for your suggestion. :smiling_face_with_three_hearts:

2 Likes

Nice extension @Techno_Vedang :grinning:

2 Likes

Thanks @Shameek_Biswas :kissing_heart:

1 Like

Wow, Awesome Extension @Techno_Vedang :heart_eyes:
I really love your work :kissing_heart:

3 Likes

Thanks you very much @Salman_Dev

Yeah same to you. :smiling_face_with_three_hearts:

2 Likes

Great extension. I was looking for something similar once. Can I suggest an idea for a different extension also related to Label?

2 Likes

Thanks :grin: :heart_eyes:

Yes, why not

2 Likes

I used to need drop-down labels. When we have a long text in the label and we don't want to display the whole text by default, the extension could limit the text to e.g. 100 characters and add a shortcut to expand "more". After clicking on "more" the label would expand and the link would change to "less". Then clicking on "less" the label would roll back to 100 characters.

2 Likes

Maybe it can be possible. I will take a look.

2 Likes

This extension is great, it's very useful!!!! :stuck_out_tongue_winking_eye: :stuck_out_tongue_winking_eye: :stuck_out_tongue_winking_eye:

2 Likes

Nice Extension. Pretty Useful.

3 Likes

@Techno_Vedang you should remove the word label and add component because it will also take components like - button, checkbox and maybe text input also etc.

1 Like

I don't think so

According to android docs we have to use it in TextView

TextView webURL = new TextView(this);  
webURL.setText("https://www.google.com/");  
Linkify.addLinks(webURL , Linkify.WEB_URLS);

As you can see we have to pass TextView.

1 Like