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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:24:05+00:00 2026-05-27T23:24:05+00:00

We have Edittext which can take Decimal value. So I have used android:inputType=numberDecimal android:numeric=decimal

  • 0

We have Edittext which can take Decimal value. So I have used

android:inputType="numberDecimal"
android:numeric="decimal"  

Now EditText takes decimal values. My Query is can I control the user to enter only upto two decimal places?

For example 1345.99, he cannot put more than two digit after decimal point.

  • 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-27T23:24:06+00:00Added an answer on May 27, 2026 at 11:24 pm

    there can be two solution,

    1) let user not allow after he entered something like this xxx.xx.

    2) let him enter it and when saving the value or taking an action on the screen, Check the value of edittext and generate a toast if the value entered is not in the desired format.

    for second solution here you go. /

        String str = editText.getText().toString();
    
        int indexOFdec =  str.indexOf(".");
    
        if(indexOFdec >=0) {
           if(str.substring(indexOFdec).length() >2)
           {
               Toast.makeText(getApplicationContext(), "Print a message here", Toast.LENGTH_SHORT).show();
               return;
           }
        }
    

    let me know if it works.

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

Sidebar

Related Questions

I have an EditText in which I want only integer values to be inserted.
I have a EditText box which is used to input names. Once the names
I have the following xml for an edittext and button which take the whole
I have an EditText which is android:focusable=false. I would like to do something when
What I want I have an EditText, where the user can enter a value,
i have a EditText in android in which i want the user to enter
I have a ListView and a EditText . How can I filter ListView data
I have an Activity in Android, with two elements: EditText ListView When my Activity
I can't figure this out. Some apps have an EditText (textbox) with the help
Hallo all, I have a ListView, which contains an EditText in each of it's

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.