Tagged Questions
The linkify tag has no wiki summary.
9
votes
5answers
2k views
C# code to linkify urls in a string
Does anyone have any good c# code (and regular expressions) that will parse a string and "linkify" any urls that may be in the string?
5
votes
4answers
3k views
Android: Linkify TextView
I have textview which I need to linkify. Here's what I am doing..
TextView text = (TextView) view.findViewById(R.id.name);
text.setText("Android...Update from Android");
Pattern pattern = ...
5
votes
1answer
339 views
Ruby linkify for urls in strings
There have been a few posts about linkifying text using a regex. The most popular is this post.
However my spec is a little more tricky:
describe TextFormatter do
def l(input)
...
2
votes
2answers
243 views
Android Linkify text - Spannable Text in Single Text View
I have a textView and text like
"This is the Simple Text with KeyWord and the Link to browse"
in the above text i want to make..
clicking on the Link goes to open that URL
AND
clicking on that ...
2
votes
3answers
123 views
Linkify Android Transform Question
Trying to do something fairly simple.
Taking text like this
User Name: This is a comment I am making
It is in a single TextView. I want to make the User Name a link. I decided that the easiest ...
2
votes
1answer
119 views
jquery Linkify: Firefox displaying “/#%21/…” instead of “/#!/…” in href attr after linkification
It's odd, I really don't know what else to check... I'm using this code for linkifying URLs...
And the URLs with a hash like Twitter http://twitter.com/#!/username/status/1234567890
Firefox shows ...
2
votes
1answer
251 views
jQuery Linkify plugin: Can't handle links that end in parenthesis
I'm using this great plugin: https://github.com/maranomynet/linkify/blob/master/1.0/jquery.linkify-1.0.js
to link text manipulating the dom. The problem is with links like this: ...
2
votes
1answer
136 views
Android Linkify lower cases the URL
I have a URL with some Upper case letters like http://myserver.com/apps/DroidApp.apk
When I passed this url to Android Linkify, the resulting link's letter case changed to ...
2
votes
2answers
226 views
LInkify block onclick event
I have some TextView objects that I have onclick listeners assigned to. The onclick listeners work fine unless I run Linkify.addLinks on the TextView objects, at which point the onclick event never ...
2
votes
3answers
581 views
Disable the automatic Linkify of Webview
I have a webview that I am creating. It seems to automatically be linkifying numbers into tel: urls. I didn't see a way to remove this ability (at least nothing similar to the way to enable it on a ...
2
votes
2answers
564 views
Alert Dialog Linkify but keep text white
Hello I am using the following code to linkify email addresses and urls and that is working just as i need it to however if you click any where besides the urls and emails the white text that is ...
2
votes
1answer
231 views
Styling Linkify
Is there any way to style the links produced by a Linkify.addLinks() operation? Specifically I want to change from the default blue color.
Thanks
2
votes
3answers
891 views
Android Linkify both web and @mentions all in the same TextView
Ok so I asked this yesterday:
AutoLink @mentions in a twitter client
I got my @mentions linking correctly. But in order to get it to work I had to take android:autoLink="web" out my xml for the ...
2
votes
1answer
373 views
TextView getting highlighted after using linkify or autolink
I have a long text message followed by a link and have put this inside a TextView. It's simply like this:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView ...
2
votes
0answers
573 views
How do I tell linkify not to underline links?
Is there any way to tell linkify not to underline my links? I am already using textView.setLinkTextColor(stateList) to change the color, but I'd like to remove the underline that is inserts on the ...
2
votes
4answers
813 views
Linkify to call java code
Is there a way to have a Linkify'd link call a method in my Activity or am I only allowed to use Linkify to create links to other activities / apps etc.?
2
votes
1answer
891 views
Android - Linkify Problem
I seem to be having trouble with the linkify I am using in my Custom Adapter. For some reason I recieve the following stack track when I click on one of the links:
06-07 20:49:34.696: ...
1
vote
1answer
37 views
Use Twitter linkify in PHP posts
I'm really new to PHP and JavaScript and I made a PHP posting script and I wanted to add twitter linkify to usernames. I put the javascript in the head but no luck. I followed all the directions but I ...
1
vote
1answer
79 views
android:autoLink in listView
I have a listView, and ech item of listView has textView. I have set android:autoLink="web|email" to textView and onTouch listener across each item of listView.When I touch the ...
1
vote
0answers
58 views
JavaScript Regular Expression to linkify text not in tags
I have been using the following linkify code for a while:
return str.replace(/(\s|^)(mailto\:|(news|(ht|f)tp(s?))\:\/\/\S+)/g,'$1<a href="$2" target="_blank">$2</a>')
...
1
vote
1answer
105 views
Disable Automatic Linking of Mailing Address in WebView
The android WebView will automatically detect a mailing address in the html and allow you to click on it to launch a map. Is there anyway to disable this without a native code change? Can I add ...
1
vote
0answers
43 views
about android linkify for maps
I am using linkify in my android app to auto recognize addresses. It works with some addresses but not others. One of the things that I noticed was that capitalization is an important thing for the ...
1
vote
2answers
174 views
Dynamic Linkify Text in ListView - Error : no intent found with data : specified url
i am creating a listview.
in that list each item has text view.
and in text views i am defining linkify texts based on data from the web service..
now when i click on that linkify text i am getting ...
1
vote
1answer
58 views
Android include “?” in Linkify text
I used the method found in this link Android: Linkify TextView
public static void addLink(TextView textView, String patternToMatch,
final String link) {
Linkify.TransformFilter filter = ...
1
vote
4answers
504 views
Android Linkify links textColor ignored, css style overrides possible?
I am using Linkify in my app, and visited link text is appearing as dark purple. My overall layout background color is dark blue so this is impossible to read. The text is set as white, but visited ...
1
vote
1answer
156 views
Launch email intent with Linkify, subject header
I've managed to set up the launch of an email using linkify, and I have also learned how to create an intent with the subject set, and send an email by calling startActivity with that intent ...
1
vote
2answers
68 views
Linkify adds Text to the End of Links
I would like to add a link to a textview and have the following code:
TextView textview = (TextView) findViewById(R.id.mytext);
Pattern myPattern = Pattern.compile("WordToBeLinked");
String link = ...
1
vote
1answer
110 views
Linkify using pattern
Pattern pattern = Pattern.compile("[a-zA-Z]+&");
myCustomLink.setText("press Linkify& or on Android& to search it on google");
Linkify.addLinks(myCustomLink,pattern, ...
1
vote
1answer
325 views
How to linkify @usernames and #hashtags with jquery.linkify Plugin
I'm using this jquery plugin: https://github.com/maranomynet/linkify/blob/master/1.0/jquery.linkify-1.0.js
With this REGEX plugins I'm trying to linkify @usernames and #hashtags...
linkify.plugins ...
1
vote
1answer
394 views
What is linkify's default link color?
When you do, for example,
Linkify.addLinks(mTextView, Linkify.EMAIL_ADDRESSES);
what colour does Linkify use? It's not obviously in android.graphics.Color.
I have a few long paragraphs of stuff I ...
1
vote
1answer
154 views
Add <wbr> and ellipsis to long links (linkified with jquery.linkify)
I'm using "Linkify" to add links to static text... This is what I'm using:
https://github.com/maranomynet/linkify/blob/master/1.0/jquery.linkify-1.0.js
I would like to add a <wbr> (word break) ...
1
vote
1answer
436 views
Android TextView enable LinkiFy and Href tags
I want to set a text to the textview which contains href tags as well as normal http links. For ex, text like this "please <a href=/'http://google.com' target='_blank'>click here</a>. or ...
1
vote
0answers
266 views
Android-List View-Linkify: Does Linkify interfere with Creating Context Menu?
I have a list view which displays my Twitter timelines. The usernames have been linkified with corresponding profile links. Also, I am registering for a context menu for each row items. I observed a ...
1
vote
2answers
2k views
Android: Format Font in Alert Dialog
I have two questions
1) Does anyone know, how to apply styles or formatting to alert dialog. I currently use Builder builder = new AlertDialog.Builder(this); And use setMessage() method to set the ...
1
vote
1answer
1k views
Android: Start activity via link in TextView
I have a TextView which I fill with HTML and linkify it then. Some of the links in HTML are in special format and meant to be links to other activities in my project, not normal URL links. Is it ...
1
vote
1answer
547 views
Can I change TextView link text after using Linkify?
Is is possible to change TextView text after using Linkify to create links? I have something where I want the url to have two fields, a name and id, but then I just want the text to display the name.
...
1
vote
2answers
287 views
Cannot import android.text.util.Regex? Where is it?
I'm developing an application and I want to use android.text.util.Regex.WEB_URL_PATTERN as the pattern for the Linkify. But, as I have notice, I cannot import android.text.util.Regex for some reason.
...
1
vote
2answers
449 views
Android LinkMovementMethod in XML?
To enable Linkify behavior, I do this in code:
textView.setMovementMethod(LinkMovementMethod.getInstance());
Is there a way to set this in the layout xml for the textview?
1
vote
1answer
618 views
Android Linkify from HTML in TextView
I have HTML with standard links which correspond to commands I'd like to handle.
This is <a href="CMD:nice">a command</a>.
I populate a TextView with Html.fromHtml()
How can I use the ...
1
vote
3answers
891 views
Android — autoLink
Is there any way to Linkify a specific TextView that is contained within a ListView? I tried using android:autoLink="all" but that didn't work. I was getting an out of context error.
Important ...
0
votes
2answers
48 views
Android Linkify
I am trying to create an Android Activity page, SecondaryActivity that provides a link to a webpage that opens a web browser with a specified link. I am launching the Activity page from my Main ...
0
votes
1answer
45 views
Javascript to linkify string in “minutes:seconds” format
I have a video site where people can comment under each video.
I'm trying to create a linkify function that will parse a user's comment and look for substrings in the "minutes:seconds" format. The ...
0
votes
2answers
39 views
Cannot insert custom links in TextView
I am trying to insert links to TextView in order to make them start a new activity. I wrote a method to my Utils class to do that:
public static final String tagPattern = "#([^ ]+)";
public static ...
0
votes
1answer
43 views
Textview linkify without changes?
Is it possible to linkify a textview without the content changing colors (both before and after selection)and getting underlined?
0
votes
1answer
49 views
Linkify + textIsSelectable
After using
Linkify.addLinks(content, pattern_glos, scheme_glos, null, glosFilter);
logs write
11-22 21:19:15.319: W/TextView(14718): TextView does not support text selection.
Action mode ...
0
votes
3answers
90 views
HTML Encode & URLs
I have an input string that must be stripped from html codes, so I use the default .Net function .HtmlEncode() to escape all dangerous characters.
Now I'm trying to replace URL's in the input ...
0
votes
1answer
90 views
linkify text to send email?
I am trying to make a clickable text using linkify. When the name is clicked on, I want to call email intent. However, the email address is not the same as the linkify. Is there any way through ...
0
votes
0answers
190 views
phone number, pause and extension to dial automatically
I am trying to link our company phone directory into my app for automatic dialing using a phone number and extension.
This is my format in the textview:
Name - Cell - Office: ...
0
votes
2answers
59 views
problem with linkify in android app
I have a phone number in a text view (thats the only thing I have there). I am using :
Linkify.addLinks(textView, Linkify.ALL);
However, the phone number is not being recognized by linkify. The ...
0
votes
1answer
185 views
ListView onClick event doesn't fire with Linkified email address
I have a straight forward ListView with a ListAdapter and custom onItemClick method for the list.
My ListView items are clickable to perform other functions. However, some of my ListView elements ...