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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:03:52+00:00 2026-06-16T15:03:52+00:00

I have a requirement where i have to implement Buttons which can move the

  • 0

I have a requirement where i have to implement Buttons which can move the cursor up and down the line in a multi line Edittext.

I went through the Developer website and found that Selection class http://developer.android.com/reference/android/text/Selection.html
can be used, but i am not able to use it..

Please help me here..

Thank you.

  • 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-16T15:03:53+00:00Added an answer on June 16, 2026 at 3:03 pm

    Source: http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.3_r1/android/text/Selection.java

    I copied the code and made a little modification below, then appended it to my class.


    public boolean moveDown(Layout layout) {
            int start = myTextbox.getSelectionStart();
            int end = myTextbox.getSelectionEnd();
    
            if (start != end) {
                int min = Math.min(start, end);
                int max = Math.max(start, end);
    
                myTextbox.setSelection(max);
    
                if (min == 0 && max == myTextbox.length()) {
                    return false;
                }
    
                return true;
            } else {
                int line = layout.getLineForOffset(end);
    
                if (line < layout.getLineCount() - 1) {
                    int move;
    
                    if (layout.getParagraphDirection(line) ==
                        layout.getParagraphDirection(line + 1)) {
                        float h = layout.getPrimaryHorizontal(end);
                        move = layout.getOffsetForHorizontal(line + 1, h);
                    } else {
                        move = layout.getLineStart(line + 1);
                    }
    
                    myTextbox.setSelection(move);
                    return true;
                }
            }
    
            return false;
        }
    

    I hope this will be useful.

    If somebody knows how to use real method without recreating it, please share 😀

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

Sidebar

Related Questions

I have a requirement where I need to implement a thumbs up, thumbs down
I have a requirement which sounds like kind of simple but hard to implement
I have a requirement to implement a web application using MVC 3, which works
I have a requirement to implement a web-service that can issue files to the
I have a requirement to implement user privilege elevation in an MVC3 web app,
I have a requirement to implement contact database. This contact database is special in
I have a requirement to implement a feature (in C#) to lock a folder
I've a requirement in which I have a start and End time. For instance
I am making an iPhone app which has a requirement to implement the UIPageControl.
I have a requirement in my iPhone app which is something similar to Handwriting

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.