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

  • Home
  • SEARCH
  • 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 7655939
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:38:39+00:00 2026-05-31T12:38:39+00:00

Is there a way to highlight a word in a TextView, so you can

  • 0

Is there a way to highlight a word in a TextView, so you can click it and an other Activity starts? I want to make a kind of dictionary App and some Word in the definitions aren’t self-explaining, so i thought when i highlight them and the user could click them, an other activity should start with an other definition.

Thanks.

  • 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-31T12:38:40+00:00Added an answer on May 31, 2026 at 12:38 pm

    Give you a demo:

    public class TextViewDemo extends Activity {
        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                TextView txtInfo = new TextView(this);
                SpannableString ss = new SpannableString("helloworldandroid:.");
                ss.setSpan(new ForegroundColorSpan(Color.RED), 0, 2,
                                Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                ss.setSpan(new URLSpan("tel:4155551212"), 2, 5,
                                Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                ss.setSpan(new StyleSpan(Typeface.BOLD_ITALIC), 5, 7,
                                Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                ss.setSpan(new StrikethroughSpan(), 7, 10,
                                Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                ss.setSpan(new UnderlineSpan(), 10, 16,
                                Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                ss.setSpan(new ForegroundColorSpan(Color.GREEN), 10, 15,
                                Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
                Drawable d = getResources().getDrawable(R.drawable.ic_launcher);
                d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
                ImageSpan span = new ImageSpan(d, ImageSpan.ALIGN_BASELINE);
                ss.setSpan(span, 18, 19, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
                txtInfo.setText(ss);
                txtInfo.setMovementMethod(LinkMovementMethod.getInstance());
                setContentView(txtInfo);
        }
    

    }

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way i can make my listactivity (rather listview) highlight the List
Is there any way I can get Eclipse to highlight the use of the
Is there a way to tell Vim not to highlight a word once? For
I’m using the jQuery UI Autocomplete plug-in . Is there a way to highlight
Is there a way to programmatically highlight an imageview in android? I am showing
Is there a way to do a selection highlight over all elements in a
Is there any way I can get my Python code syntax highlighted in Microsoft
Is there a way to highlight an ImageButton when it's pressed?
Is there any way to highlight javascript syntax by eclipse (pdt) in a phtml
Is there any way to highlight certain keywords like TODO in comments? I used

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.