Questions tagged [autolink]

103 questions
1
vote
2 answers

Multiple URLs in TextView

In my app I have one textview that contains multiple URLs. I have to open that in my app only if I used android:autoLink="web" android:clickable="true" Here it opens in browser but I have to open in my Webview.
Jack
  • 89
  • 7
1
vote
0 answers

Textviews show linkable text when there isn't an actual link

In Lollipop, I have a textview which is populated by Html.fromHtml(). the text for example can be "hello.world" and it shows as a link. In the layout for this TextView I've specified only autoLink="web" as I want links in the string to be clickable…
Israel Tabadi
  • 574
  • 4
  • 11
1
vote
3 answers

Android TextView autoLink in an app widget

I have an app widget with a TextView in it. I set its android:autoLink property to "web" so that the links can be clicked to launch them in browser. The links become clickable alright, but when I click on them an exception is thrown while opening…
Paul Muriithi
  • 41
  • 1
  • 5
1
vote
2 answers

Using XML layout for TextView

I use Xamarin and I have the following code: base.OnCreate (bundle); TextView textView = new TextView (this.ApplicationContext); textView.AutoLinkMask = Android.Text.Util.MatchOptions.PhoneNumbers; textView.Text = "This is a phone number 0800 32…
user22707
  • 505
  • 1
  • 13
  • 23
1
vote
1 answer

Re-Linking Photoshop Text Layer Name to Layer Text Content

When you create a Text Layer in Photoshop (I believe CS3 and above) the "Layer Name" auto-updates when the "Layer Content" gets changed. This link from "content" to "name" remains until you manually change the "Layer Name". Then, the link is…
1
vote
0 answers

When using android:autoLink, non-linked text changes color on click

I have a TextView that I have set android:autoLink="web" on, and it works just fine, but the non-linked text changes from whitish to black when I click on it, for example if I have the text Check out Google's site: www.google.com, the Check out…
Mohamed Hafez
  • 8,621
  • 7
  • 41
  • 49
1
vote
1 answer

javascript autolink urls but avoid recursion

I'm trying to create an autolink feature in javascript that automatically turns urls into links while the user types (ContentEditable div). I use this regex: var text = 'Some text containing URLs'; var exp =…
Portable Page
  • 239
  • 3
  • 7
1
vote
0 answers

Linking to UK addresses from TextView AutoLink=Map

I'm new to android development and been trying to use the autolink feature of a TextView to allow linking to show a UK address in Google Maps. I'm using android sdk 4.2 with a Nexus 7. I can't get the textview autolink feature to recognize a UK…
Atkinsonline
  • 57
  • 2
  • 9
1
vote
2 answers

error when using rinku

How can I get rinku to run and the page to load properly? Error message: uninitialized constant ActionView::CompiledTemplates::Rinku Steps taken: Installed rinku gem and rake-compiler and ran $ rake per the gem developer's instructions Inserted…
djmb
  • 59
  • 1
  • 5
0
votes
1 answer

Zend add base url to all links in content

I want to add the base_url to all internal links in blocks of text in my views, to help prevent content-scraping. My idea was to use something like a good equivalent of CodeIgniter's auto_link() helper for Zend Framework. Does it exist?
Joris Portfolioris
  • 141
  • 1
  • 1
  • 10
0
votes
1 answer

Auto verify not always working in App Links using android

I am currently working on implementing app links functionality in my application. The goal is to scan QR codes and redirect users inside the app. However, I am encountering an issue where, sometimes, after installing a beta version of the app,…
Usman Khan
  • 3,739
  • 6
  • 41
  • 89
0
votes
0 answers

React Native for Windows throws an error The system was unable to find the specified registry key or value and the build fails

I am trying to install and run React Native on Windows UWP using C++. The rest of the process works fine but in the end build fails with the error: The system was unable to find the specified registry key or value. I am using Visual Studio 2022,…
0
votes
1 answer

Boost auto link is trying to link with boost library that doesn't exist

When I tried to build my project with Boost library iostreams using Clang on Windows without using CMake, I get bunch of link errors. When I'm using Boost auto link I get error that the linker can't open file…
xarxarx
  • 21
  • 5
0
votes
1 answer

How to handle autolink click event of android textview?

Here is my xml code for autolink in textview.
SARATH V
  • 500
  • 1
  • 7
  • 33
0
votes
1 answer

How to (selectively) disable auto-links to examples in Doxygen

I have the following problem: I want to add code examples to my doxygen documentation. It works fine, but I have quite some examples, each of which needs to call the same function, say, myInit(). Now, the generated documentation for myInit()…
loki
  • 21
  • 2