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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:43:42+00:00 2026-05-20T07:43:42+00:00

I have a layout which has three fields for the entry of three map

  • 0

I have a layout which has three fields for the entry of three map coordinates. So far so good. I’m using android:inputType=”numberDecimal” in the layout. When entering the field the user gets the numeric keypad. Still good.

However, when a negative coordinate needs to be entered, there is no apparent way to do this.

23.2342 works fine.
232.3421 works fine.
-11.23423 can not be entered – there is no way to enter the leading negative sign, or even wrap the coordinate in ().

I’m sure I can go the route of changing this to straight text inputType, and then use a regular expression to validate that what was entered is in fact a numeric coordinate, handle error messaging back to the user, etc. But I’d rather not go that route.

I have Googled and Stackoverflowed this question for a couple hours with no luck. Any suggestions?

  • 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-20T07:43:42+00:00Added an answer on May 20, 2026 at 7:43 am

    Ended up using Pattern and Matcher for each of the axes, leaving the actual text input format open.

    Three axes fields, submit button triggers onSave. Fields are validated and either the insert occurs, or error message is raised to submitter about required format for the Axes fields. Proper format is 1-3 digits, optionally prefaced by ‘-‘, optionally followed by ‘.’ and additional digits.

    Try this code :

    private View.OnClickListener onSave=new View.OnClickListener(){
        public void onClick(View v){
            Pattern xAxis = Pattern.compile("[-+]?([0-9]*\\.)?[0-9]+");
            Matcher mForX = xAxis.matcher(xaxis.getText().toString());
    
            Pattern yAxis = Pattern.compile("[-+]?([0-9]*\\.)?[0-9]+");
            Matcher mForY = yAxis.matcher(yaxis.getText().toString());
    
            Pattern zAxis = Pattern.compile("[-+]?([0-9]*\\.)?[0-9]+");
            Matcher mForZ = zAxis.matcher(zaxis.getText().toString());
    
            //If Axis X and Axis Y and Axis Z are all valid entries, the proceed.
            if(mForX.find() && mForY.find() && mForZ.find()){
                 //handle insert or update statement here
            }else{
                 //give error message regarding correct Axis value format
            }
       }
    

    }

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

Sidebar

Related Questions

I have an AbsoluteLayout which has an OnTouchListener . Inside this layout there is
I have a layout which uses min-width and works great. So I came to
I have a div in which a page is loaded with the DojoX Layout
I have a layout that is working, but it has one very annoying problem..
I am using Tiles within my web-application. I have a standard-layout (standard.jsp) within the
We have a very long form that has a number of fields and 2
I have a ViewFlipper implementation that needs to be improved. This ViewFlipper has three
I have written a web part in C# for Sharepoint 2007 which has a
I am trying to create a table view which has a layout like what
I have a layout similar to this: <div id=...><img src=...></div> and would like to

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.