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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T14:20:50+00:00 2026-05-22T14:20:50+00:00

I’m having some trouble with a simple dialog i’m working on. I have three

  • 0

I’m having some trouble with a simple dialog i’m working on. I have three different TextView’s that when they are clicked I have a dialog box pop up with only the Title and one EditText. I’m trying to make it so I use the same custom dialog for all three text views, but depending on which TextView is tapped the dialog set the new value to that TextView. Below is my code:
@Override
protected Dialog onCreateDialog(int id) {
super.onCreateDialog(id);
CustomDialogPercent dialog = null;

    switch(id){
    case 1:
        dialog = new CustomDialogPercent(this, id);
        dialog.setTitle("Shipping Percent");
        dialog.show();
        break;
    case 2:
        dialog = new CustomDialogPercent(this, id);
        dialog.setTitle("Tax Percent");
        dialog.show();
        break;
    case 3:
        dialog = new CustomDialogPercent(this, id);
        dialog.setTitle("Commission Percent");
        dialog.show();
        break;
    default:
        dialog = null;
    }
    return dialog;
}

private void registerListeners() {
    shippingPercent.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            showDialog(1);
        }
    });

    taxPercent.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            showDialog(2);
        }
    });

    commissionPercent.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            showDialog(3);
        }
    });
}

public class CustomDialogPercent extends Dialog {

    int id = 0;

    public CustomDialogPercent(Context context, int id) {
        super(context);
        this.id = id;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.basic_dialog);

        basicDialogEntry = (EditText) findViewById(R.id.basic_dialog_entry);
        basicDialogEntry.setKeyListener(DigitsKeyListener.getInstance(true,true));


    }

    @Override
    public void onStart() {
        super.onStart();

        switch(id) {
        case 1:
            basicDialogEntry.setOnKeyListener(new View.OnKeyListener() {

                @Override
                public boolean onKey(View v, int keyCode, KeyEvent event) {
                    if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER) {

                        InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                        imm.hideSoftInputFromWindow(basicDialogEntry.getWindowToken(), 0);                      

                        shippingPercent.setText(basicDialogEntry.getText().toString());

                        try {
                            if ((Float.parseFloat(basicDialogEntry.getText().toString())) < 0) {}
                        }catch(Exception ex) {
                            shippingPercent.setText("0");
                        }

                        mathCalculations();

                        CustomDialogPercent.this.dismiss();
                    }   
                    return false;
                }
            });
            break;
        case 2:
            basicDialogEntry.setOnKeyListener(new View.OnKeyListener() {

                @Override
                public boolean onKey(View v, int keyCode, KeyEvent event) {
                    if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER) {

                        InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                        imm.hideSoftInputFromWindow(basicDialogEntry.getWindowToken(), 0);                      

                        taxPercent.setText(basicDialogEntry.getText().toString());

                        try {
                            if ((Float.parseFloat(basicDialogEntry.getText().toString())) < 0) {}
                        }catch(Exception ex) {
                            taxPercent.setText("0");
                        }

                        mathCalculations();

                        CustomDialogPercent.this.dismiss();
                    }   
                    return false;
                }
            });
            break;
        case 3:
            basicDialogEntry.setOnKeyListener(new View.OnKeyListener() {

                @Override
                public boolean onKey(View v, int keyCode, KeyEvent event) {
                    if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER) {

                        InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                        imm.hideSoftInputFromWindow(basicDialogEntry.getWindowToken(), 0);                      

                        commissionPercent.setText(basicDialogEntry.getText().toString());

                        try {
                            if ((Float.parseFloat(basicDialogEntry.getText().toString())) < 0) {}
                        }catch(Exception ex) {
                            commissionPercent.setText("0");
                        }

                        mathCalculations();

                        CustomDialogPercent.this.dismiss();
                    }   
                    return false;
                }
            });
            break;
        }
    }
}

OK. With this code what is happening is the first time I tap each TextView they work perfectly. But once I tap any of them again the dialog boxes pop up correctly with the correct title, but values that are set back to the TextView are incorrect.

Example; i enter 8 for the shippingPercent and them 25 for the commissionPercent. And then i go back to shippingPercent and enter 5. The 5 doesn’t get set. Instead it will be 25. If i keep using the dialog boxes it seems like my mathCalculations() stops working aswell.

Thanks for all the help.

  • 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-22T14:20:51+00:00Added an answer on May 22, 2026 at 2:20 pm

    Maybe you could assign a variable

    activeTextView = theTextViewYouWant;
    

    …then update activeTextView with the value you want?

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

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm having trouble keeping the paragraph square between the quote marks. In firefox the
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
I am doing a simple coin flipping experiment for class that involves flipping a
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text

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.