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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T03:29:41+00:00 2026-06-04T03:29:41+00:00

I would put in this code a control on EditText so that it only

  • 0

I would put in this code a control on EditText so that it only accepts hexadecimal numbers.
How do I go about doing this?

bin = (EditText)findViewById(R.id.editText02);
hex = (EditText)findViewById(R.id.editText3);
dec = (EditText)findViewById(R.id.editText1);
oct = (EditText)findViewById(R.id.editText04);
  • 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-04T03:29:43+00:00Added an answer on June 4, 2026 at 3:29 am

    TextWatcher is also good option, however I prefer using custom filters.
    thereby, simpler way is to use InputFilter and take control of every char on the fly, see example below, hope this helps

        import android.text.InputFilter;
        import android.text.InputType;
    
        EditText input_moodMsg; 
        // initialize this edittext etc etc
        //....
        // here comes the filter to control input on that component
        InputFilter inputFilter_moodMsg = new InputFilter() {
                    @Override
                    public CharSequence filter(CharSequence source, int start, int end,Spanned dest, int dstart, int dend) {
    
                        if (source.length()>44) return "";// max 44chars
    
    // Here you can add more controls, e.g. allow only hex chars etc
    
                        for (int i = start; i < end; i++) { 
                             if (!Character.isLetterOrDigit(source.charAt(i)) && !Character.isSpaceChar(source.charAt(i))
                                     && source.charAt(i)!='-'
                                     && source.charAt(i)!='.'
                                     && source.charAt(i)!='!'
                                     ) { 
                                 return "";     
                             }     
                        }
                        return null;   
                    }
                };
                input_moodMsg.setFilters(new InputFilter[] { inputFilter_moodMsg });
                input_moodMsg.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This XAML makes text fade in when it appears. I would like to put
I would like to write a ItemsControl derived custom control. This is partially from
I'm kind of confused. I would put all the HTML for the menu in
If I want a whole page to reload every N seconds, I would put
I want to declare some global variables and global constants. Normally, I would put
Where would you put global constants in a C++ application? For example would you
how would i put the contents of a webpage into a string? it would
While editing .scm files it would be great if Vim would automatically put the
Here's the thing. I have an interface, and I would to put the Include
I would like to put a button on top of a Google Map next

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.