Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7027035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:11:43+00:00 2026-05-28T00:11:43+00:00

I use an a-htmltag in my TextView , but when i tap on it

  • 0

I use an a-htmltag in my TextView, but when i tap on it nothing happens.

How can I make it open the web browser with the url?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T00:11:44+00:00Added an answer on May 28, 2026 at 12:11 am

    Try this

    txtTest.setText( Html.fromHtml("<a href=\"http://www.google.com\">Google</a>"));
    txtTest.setMovementMethod(LinkMovementMethod.getInstance());
    

    Remember : don’t use android:autoLink=”web” attribute with it. because it causes LinkMovementMethod doesn’t work.

    Update for SDK 24+
    The function Html.fromHtml deprecated on Android N (SDK v24), so turn to use this method:

        String html = "<a href=\"http://www.google.com\">Google</a>";
        Spanned result = HtmlCompat.fromHtml(html,Html.FROM_HTML_MODE_LEGACY);
        txtTest.setText(result);
        txtTest.setMovementMethod(LinkMovementMethod.getInstance());
    

    Here are the list of flags:

    FROM_HTML_MODE_COMPACT = 63;
    FROM_HTML_MODE_LEGACY = 0;
    FROM_HTML_OPTION_USE_CSS_COLORS = 256;
    FROM_HTML_SEPARATOR_LINE_BREAK_BLOCKQUOTE = 32;
    FROM_HTML_SEPARATOR_LINE_BREAK_DIV = 16;
    FROM_HTML_SEPARATOR_LINE_BREAK_HEADING = 2;
    FROM_HTML_SEPARATOR_LINE_BREAK_LIST = 8;
    FROM_HTML_SEPARATOR_LINE_BREAK_LIST_ITEM = 4;
    FROM_HTML_SEPARATOR_LINE_BREAK_PARAGRAPH = 1;
    

    Update 2
    with android.text.util.Linkify, it’s more easier now to make a clickable TextView:

    TextView textView =...
    Linkify.addLinks(textView, Linkify.WEB_URLS);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a set of open standards technologies that I can use to achieve
Everyone who's done any web application development in Scala knows that you can use
You can use more than one css class in an HTML tag in current
use this website a lot but first time posting. My program creates a number
How can I use jQuery to separate multiple words in a td with an
I have use web service in my windows application. webservice return string like: <b>sdfsdf</b>
I use jsoup-1.6.0,parse html tag string, that only include string content 0, but jsoup
Can we use JSF EL inside a HTML tag? For example, inside a plain
how can i use this javascript code on a webpage, who is inside an
Without knowing good X/HTML we can't use css properly optimize way..... How to give

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.