A class with which you can easily link to for example webpages, phone numbers or e-mail adresses.

learn more… | top users | synonyms

0
votes
1answer
30 views

Linkify properly an email address with subject

I want to linkify a email address and put a static subject to the email. In the layout I have this: <TextView android:id="@+id/textView5" android:layout_width="fill_parent" ...
2
votes
2answers
69 views

Does Linkify work for TextView in Android?

I have this code working for my method that calls an EditText, I tried to use the same code for a TextView but it does not work. The text does not turn into a hyperlink like it does in EditText, does ...
0
votes
0answers
19 views

Android - How to stop Linkify on Long-Press?

I am working on my project where I have a listView and each item is a LinaerLayout that has a TextView with Linkify hyperlink. So, when I press the an item in the List view, it opens a dialog, which ...
0
votes
1answer
31 views

Linkify in Android Fragment

I am trying to use linkify ina Fragment and I can't get it to actually linkify and I can't find my documentation on how to use it correctly. If someone could help that would be great! ...
0
votes
2answers
37 views

Clickable URLs in TextView

I can't figure out how to use Linkify for my TextView. I'm currently trying: Linkify.addLinks(myTextView, ...
0
votes
0answers
13 views

Listview with textview having links and Image button

I wanted to know if it is possible create a listview having textview and image button, and textview contents consists of HTML link using linkify. And to have action for image button and LINKS. Some ...
0
votes
0answers
38 views

Android Linkify disables onTouch event

I have a problem with Linkify. I have a TextView and it is inside a LinearLayout. I implement onTouchListener for the LinearLayout. so if use Linkify for the textview like this ...
1
vote
1answer
65 views

twitter linkify android all @mentions

I want to give a link all twitter @mentions on mytweets app in android. If I click on @mentions I want to open another page about of the @mentions. This code do not work. Firstly I want to search ...
11
votes
4answers
649 views

TextView that is linkified and selectable?

I would like to have a TextView that is both selectable and linkified. When I do both I end up with selectable text but links can't be clicked. EDIT: I'll show the code to explain with what I ...
0
votes
0answers
119 views

Using Linkify.addLinks combine with Html.fromHtml

I have a TextView that gets it's data set by calling this: tv.setText(Html.fromHtml(myText)); The string myText contains partially formatted html data. For example, it might have font tags, but not ...
1
vote
2answers
92 views

Android, how to tell if user clicks a linkify link, or presses home button

I think I need to put some code within my onStop method. It pertains to a service that should be running only when the activity is finished() but when the user follows some linkify'd text to the web ...
1
vote
1answer
218 views

Linkify, ListView & ActionMode. Regular Text no longer clickable

So I have a listview that shows random texts. The textview may sometimes be regular text, but can also be URLs and the like. I added the following line to my BaseAdapter's code: ...
1
vote
0answers
174 views

Android : Text View Linkify.add link makes complete line in text view clickable

I am showing some text in a text view which is an element inside list view. I am using Linkify.addLinks to add links in the textview. But the problem is that the complete line containing the links ...
3
votes
1answer
54 views

Creating links using linkify

I want to create the linkify with a simple html string like "Search stackoverflow with Google`". Have tried to use regular expression for detecting text parts with the following code, but the word ...
2
votes
0answers
195 views

Linkify textView and make text selectable

I have a textView and I want to make the text clickable (urls and phone numbers) I have successfully been using Linkify ex Linkify.addLinks(tvDescription, Linkify.ALL); Now I would like to make ...
0
votes
3answers
192 views

Android Linkify how to set custom link color

I want to set my android linkify text color to a custom color however mText.setLinkTextColor("#2f6699"); does not work, I have been searching for a built in method that will compile a hexidecimal vale ...
0
votes
1answer
167 views

Android linkify how to catch @mentions #hashtags we URLs and have them launch another activity

I am attempting to make a custom linkfy class that will catch twitter #hashtags @mentions and URLs in a text string and have it launch another activity so far I have been able to find some code but ...
0
votes
1answer
121 views

Unable to define intent data to handle linkify intent

I have an activity that contains the following filter: <intent-filter> <category android:name="android.intent.category.DEFAULT" /> <action ...
1
vote
2answers
175 views

How to process textview for HTML and Linkify

I am trying to get a textview to process a hyperlink as well as phone numbers. Say my text is: "555-555-555, www.google.com, <a href="www.google.com">Google!</a>" If I run ...
3
votes
1answer
310 views

Is there any way to make custom Spannables on Android?

In my Android app I've got text views with links. Each of them is toggling a particular event (opening browser, starting another activity, etc...). To handle that, I haven't found any better solution ...
0
votes
1answer
282 views

Linkify Phone-numbers using Regex

I am trying to linkify phonenumbers using regular expressions, but i cant manage to apply it on my setText(); I've googled alot and it feels like im really close to success. The code i got : ...
1
vote
0answers
27 views

Linkify HashTags and Pass to URL [duplicate]

Possible Duplicate: Find twitter hashtags using jQuery, and apply a link I'm looking to linkify certain or all elements in a page to "linkify" themselves and pass through to the URL, just ...
0
votes
2answers
50 views

in Android is there any way to wrap Linkify Texts?

I want to show the clickable text instead of using the url in webview. for example my text will be google and when user clicks on it it will start action_view intent to google's url. is it possble?
1
vote
0answers
68 views

Handling Display URLs and actual URLs with Linkify

I am trying to find the best way to implement the following: A normal URL would look like https://www.google.com/something/somethingmore/a_lot_more_stuff.html I'd like to display this as ...
4
votes
4answers
1k views

convert url to links from string except if they are in a attribute of a html tag

I am trying to convert, from a textarea input ($_POST['content']), all url's to link. $content = preg_replace('!(\s|^)((https?://)+[a-z0-9_./?=&-]+)!i', ' <a href="$2" ...
0
votes
1answer
239 views

Linkify() - activating links

I have added links to text that is surrounded by [square brackets] in a popup dialog box. The links however, are not clickable (nothing happens when they are pressed). I can't work out why(!) Here is ...
0
votes
2answers
304 views

Converting a SpannableString to a ClickableSpan

I am trying to make clickable links in text strings that launch an activity when clicked. I have used Linkify() to detect links in my text. This function is capable of adding links to text, but only ...
2
votes
1answer
152 views

Linkify - Linking scheme for non-web (internal) event control

I am using Linkify(text, pattern, scheme) to identify regular expressions in text presented in a dialog box. I would like the links to lead the user to other parts of my program. A bit of background: ...
0
votes
1answer
104 views

Android - Hyperlink missing underline

I use linkify to make a textview work as hyperlink, and it does work nicely. The only issue is the underline is missing, could anyone point me out what could cause the problem? shouldn't the underline ...
-2
votes
2answers
85 views

jmrware linkify not accepting url without schema (http)

I got a wierd issue with linkify'ing url to clickable links using javascript regular expression. after digging a lot on so.com, i started using jmrware/LinkifyURL.js to convert url's to clickable ...
1
vote
0answers
53 views

Linkify onLongClick only

I implemented Linkify into my EditText view using this code http://android-er.blogspot.com/2010/07/linkify.html but it is extremely difficult to edit the Links inside of a EditText since a single ...
0
votes
1answer
164 views

Linkifying tweets using simplepie

I am trying to make the links contained in certain tweets work on my twitter widget, for instance when I tweet an image and twitter turns it into a short link. Here is the code... Thank you in advance ...
1
vote
2answers
816 views

Capturing TextView clicks in ListView

I’ve a custom ListView containing 4 TextViews. Now, the TextViews have to be Linkifiable. Since Linkify wasn’t working in ListView, I made a callIntent function to see if the link is clickable or not. ...
0
votes
2answers
375 views

Using Linkify in ListView's ArrayAdapter causes RuntimeException

I have a TextView in my ArrayAdapter that may contain some hyperlinks. For those links I use Linkify: public View getView(int position, View convertView, ViewGroup parent) { View rowView = ...
1
vote
2answers
151 views

get Linkified text from textview-android…?

I have a textview in my android application. textView.setText(message); Linkify.addLinks(textView, Linkify.ALL); with this code it identify phone number,email address, weblink etc. and ...
7
votes
4answers
2k views

TextView selection with Spannable and LinkMovementMethod

What i did so far is a list view of textviews having the normal text and clickable spans: Clicking the span i'm opening the URL, clicking the item View around the textView leads to the listView ...
0
votes
1answer
125 views

I am using Linkify.WEB_URLS to linkify URLs in text view, but it looks like there's a bug with the regex

I am using Linkify.WEB_URLS to linkify URLs in text view, but it looks like there's a bug with the regex. If I am doing this noteView.setText("go to the website blabla (https://www.test.com/)"); ...
0
votes
1answer
202 views

is it posiible to use linkify using patterns to make call

is it possible to use linkify using pattern to make a call?i want to display the text "call store" in a textview.when i click on that textview need to make a call to given number.for this i have tried ...
0
votes
0answers
103 views

linkify in android

I am using linkify to make a call from my app.for making a call i have to click a button "call store"(actually it is a relative layout and a textview inside that layout is having the text "call ...
2
votes
2answers
1k views

Open TextView links at another activity, not default browser

Having the textView with autoLinkMask set to Linkify.ALL, i'm able to open the links and the browser shows the web-page. I need to call another activity that will do it with it's webView not leaving ...
2
votes
1answer
146 views

Receive custom intent without activity restart

I have a TextView with some linkification(twitter style): Pattern pattern1 = Pattern.compile("@\\w+"); Linkify.addLinks(textView, pattern1, "my_activity://one="); Pattern pattern2 = ...
0
votes
2answers
397 views

linking map address using linkify in android

The following code don't work- TextView myLocation = new TextView(this); myLocation.setText("Sodala, Jaipur, Rajasthan, IN"); Linkify.addLinks(myLocation , Linkify.MAP_ADDRESSES); ...
4
votes
1answer
213 views

Enable onContextMenu when auto link detection is present

I have a list item view , and I add this properties android:autoLink="web|email|phone" android:linksClickable="true" autoUrlDetect="true" but the problem is when ...
1
vote
4answers
272 views

linkyfy some text in TextView

I have a String in TextView and I want to Linkify a substring from that string. for example: click here to know more. I'm getting the string dynamically. So i have to search if it has click here and ...
0
votes
2answers
397 views

Android Linkify Email Is Not Supported

I tried to linkify an email address in my Android app, but it didn't work. Method 1: <TextView android:id="@+id/email" android:layout_width="wrap_content" ...
1
vote
3answers
284 views

Mitigate xss attacks when building links

I posted this question a while back and it is working great for finding and 'linkifying' links from user generated posts. Linkify Regex Function PHP Daring Fireball Method <?php if ...
2
votes
1answer
407 views

Update ListView item's drawable state when child clicked

The problem: I have a ListView item with a relatively complex layout. One of the children in the list item view is a TextView with links. The TextView can handle the clicks on links found in it(by ...
2
votes
1answer
291 views

Linkify Regex Function PHP Daring Fireball Method

So, I know there are a ton of related questions on SO, but none of them are quite what I'm looking for. I'm trying to implement a PHP function that will convert text URLs from a user-generated post ...
1
vote
1answer
107 views

fixing parenthesis in regex for linkify php function?

I've implemented "linkify" on our OSticket system and it seems to be working wonderfully, except for one noted flaw that I didn't notice in the documentiation ...
-2
votes
1answer
50 views

I need www to be linked

function urllinks(str){ return str.replace(/\b((http|https):\/\/\S+)/g,'<a href="$1" target="_blank">$1</a>'); } This code is replacing only "http" and "https" texts... but it ...

1 2 3