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

The Archive Base Latest Questions

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

I need to format the string entered by the user on a EditField. This

  • 0

I need to format the string entered by the user on a EditField.
This is my code:

input = new BorderedEditField(20, BasicEditField.FILTER_NUMERIC);

input.setChangeListener(new FieldChangeListener() {             
    public void fieldChanged(Field field, int context) {
        input.setText(pruebaTexto(input.getText()));
    }
});

public static String pruebaTexto(String r){
    return r+"0";
}

But it ends on a stackoverflow error caused apparently because of an infinite loop.
What is wrong with the code?

  • 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-11T06:55:05+00:00Added an answer on June 11, 2026 at 6:55 am

    You can prevent the recursion by checking whether this is an internal update.
    For Blackberry, this is done by checking the value of context

    input.setChangeListener(new FieldChangeListener() {
        public void fieldChanged(Field field, int context) {
            if (context != FieldChangeListener.PROGRAMMATIC) {
                input.setText(pruebaTexto(input.getText()));
            }
        }
    });
    

    This is a non-Blackberry-specific solution that will work for any variety of listener:

    input.setChangeListener(new FieldChangeListener() {
        private boolean internalCall = false;
        public void fieldChanged(Field field, int context) {
            if (!internalCall) {
                internalCall = true;
                try {
                    input.setText(pruebaTexto(input.getText()));
                }
                finally {
                    internalCall = false;
                }
            }
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

string format is always like this FirstName=ABC;LastName=XZY;Username=User1;Password=1234. I need the only UserName value (which
this should be an easy one. I need to format a string array if
I need to validate the just the format of the entered string for Latitude
Need to format a string in a ListView GridView in code behind. XAML is
I need to convert a string to a monetary format of {###}.###.###,## that is
I need to check that a string takes on the format 05:31:2008:06:27:2010 I do
I need to remove the following format from the end of a string in
I have a string x that I need to convert into a hex format:
A String will be of format [( 1.0N)-195( 1.0E)-195(28)-769.7(NESW)-1080.8(U)-617.9(43-047-30127)] I need a regex to
i have a string which has the following format (3,1,Mayer,Jack). I need all 4

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.