Hello guys, This is a simple extension which highlights the links, phone numbers and email address from Label.
Blocks-
Download
in.vedang.Linkify.aix (5.4 KB)
Screenshot -
After clicking on highlighted links it will open.
Thank you
Hello guys, This is a simple extension which highlights the links, phone numbers and email address from Label.
Blocks-
Download
in.vedang.Linkify.aix (5.4 KB)
Screenshot -
After clicking on highlighted links it will open.
Thank you
Great work !
Nice extension .
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?)
And what did you use to build the extension? I want to start building one too.
A handy little tool. Thank you for your contribution
@Techno_Vedang
Is it possible to direct hyperlinks to the app's (named) webviewer, instead of the external browser ?
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
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.
Great extension. I was looking for something similar once. Can I suggest an idea for a different extension also related to Label?
Thanks
Yes, why not
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.
Maybe it can be possible. I will take a look.
This extension is great, it's very useful!!!!
Nice Extension. Pretty Useful.
@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.
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
.