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 8718995
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T06:40:55+00:00 2026-06-13T06:40:55+00:00

Really stupid question here, but could not find an answer googling. I have a

  • 0

Really stupid question here, but could not find an answer googling.

I have a clickable textview.
How to retrieve the row’s number that is clicked??

  • 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-06-13T06:40:56+00:00Added an answer on June 13, 2026 at 6:40 am

    The question isn’t that stupid because there is no built-in method, that I know of, to do this.

    However you can use:

    • getLineHeight() to determine how tall each line is in the TextView and
    • MotionEvent#getY() in an OnTouchListener to calculate which line was clicked.

    Basic example:

    textView.setOnTouchListener(new OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            if(event.getAction() == MotionEvent.ACTION_UP) {
                float line = FloatMath.floor(event.getY() / textView.getLineHeight());
                Toast.makeText(getBaseContext(), "" + line, Toast.LENGTH_SHORT).show();
            }
            return false;
        }
    });
    

    From the getLineHeight() documentation:

    Note that markup within the text can cause individual lines to be taller or shorter than this height, and the layout may contain additional first- or last-line padding.

    So if you have modified any attribute listed above, you’ll need to account for that as well.

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

Sidebar

Related Questions

A really stupid question, but I could not figure the right way.. A is
Really stupid question, sorry, but I can't find it on google (I'm sure it's
I have what is probably a really simple, studid question but I can't find
So, this may be a really stupid question, but I'm obviously missing something here.
Ok really stupid question, but I have some methods defined in a file called
Probably a stupid question... but here goes anyway... I have set up quartz, and
This is a really stupid question, but I'm just drawing a blank here... What
Maybe I'm asking a really stupid question here but how do I update an
I fear this is a really stupid question, but here goes: Why does the
At first, this question can sound really stupid, but it is not in fundamental.

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.