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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T05:27:30+00:00 2026-05-30T05:27:30+00:00

Right now I use onFocusListener to automatically move the cursor to the end of

  • 0

Right now I use onFocusListener to automatically move the cursor to the end of the EditText string. This works fine when the box is being Focused, however, once focused if the user taps a position in the string, the cursor moves there. I’ve tried implementing other methods in addition to the Focus (Touch, Click) when I do, the cursor moves briefly to the end but then quickly to where the user clicked. Is there a way I can prevent the user from clicking the cursor position and have it automatically setSelection(EditText.getText().length())?

  • 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-30T05:27:32+00:00Added an answer on May 30, 2026 at 5:27 am
    /**
     * 
     */
    package com.sb.skeleton;
    
    import android.content.Context;
    import android.graphics.Canvas;
    import android.util.AttributeSet;
    import android.util.Log;
    import android.widget.EditText;
    
    /**
     * @author rajesh
     *
     */
    public class SBEditText extends EditText {
    
        /**
         * @param context
         */
        public SBEditText(Context context) {
            super(context);
        }
    
        /**
         * @param context
         * @param attrs
         */
        public SBEditText(Context context, AttributeSet attrs) {
            super(context, attrs);
        }
    
        /**
         * @param context
         * @param attrs
         * @param defStyle
         */
        public SBEditText(Context context, AttributeSet attrs, int defStyle) {
            super(context, attrs, defStyle);
        }
    
        @Override
        public void setSelection(int start, int stop) {
            // TODO Auto-generated method stub
            Log.d(SkeletonAppActivity.TOSS, "setSelection");
            super.setSelection(start, stop);
        }
    
    
        @Override
        public void setSelection(int index) {
            // TODO Auto-generated method stub
            Log.d(SkeletonAppActivity.TOSS, "selectionChanged");
            super.setSelection(index);
        }
    
        @Override
        protected void onDraw(Canvas canvas) {
            // TODO Auto-generated method stub
    
            setSelection(getText().length());
            super.onDraw(canvas);
        }
    
    }
    

    This class ensure that when ever a change happened for the EditText
    content it will set the cursor to the end of the text.

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

Sidebar

Related Questions

Right now i use iText to generate a pdf automatically. And my problem is
Right now I can use this URL to request a Google Static Maps image
The reason I'm asking this is because right now I use an NSMutableSet of
Right now i use log4j in its plain vanilla/out-of-the-box form. I've a log4j.properties file
I have this right now to use a cookie value if exists otherwise use
Right now I have been trying to use Launchpad's API to write a small
So right now I'm bashing my head - at the moment we use an
I have a problem right now with CodeIgniter : I use the REST Controller
I'm trying to use regular expression right now and I'm really confuse. I want
I'm learning MVVM right now. Since I've seen many tutorials or projects use only

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.