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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T00:53:09+00:00 2026-05-19T00:53:09+00:00

Here is the relevant code: @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) {

  • 0

Here is the relevant code:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case SORT_MENU:
        showDialog(ORDER_DIALOG);
        showDialog(COLUMNS_DIALOG);

        String orderBy = bundle.getString("column") + bundle.getString("order");

        break;
    }
    return false;
}
@Override
protected Dialog onCreateDialog(int id) {
    Dialog dialog;
    final String[] columns = { "title", "completed" };
    final String[] order = { "Ascending", "Descending" };

    switch (id) {
    case COLUMNS_DIALOG:
        AlertDialog.Builder columnBuilder = new AlertDialog.Builder(this);
        columnBuilder.setTitle("Columns");
        columnBuilder.setItems(columns, new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                bundle.putString("column", columns[which]);

                dialog.dismiss();
            }
        });
        dialog = columnBuilder.create();
        break;
    case ORDER_DIALOG:
        AlertDialog.Builder orderBuilder = new AlertDialog.Builder(this);
        orderBuilder.setTitle("Order");
        orderBuilder.setItems(order, new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                String orderS;
                if (order[which].equalsIgnoreCase("Ascending"))
                    orderS = "ASC";
                else
                    orderS = "DESC";

                bundle.putString("order", orderS);

                dialog.dismiss();
            }
        });
        dialog = orderBuilder.create();
        break;
    default:
        dialog = null;
        break;
    }

    return dialog;
}

I know that a Dialog is asynchronous from the main UI thread. So calls like these:

showDialog(ORDER_DIALOG);
showDialog(COLUMNS_DIALOG);
String orderBy = bundle.getString("column") + bundle.getString("order");

Only result in orderBy being null. Is there any way to have orderBy wait until both dialogs are confirmed to be finished? Even if dialog.isShowing() is false, this may be because the dialog has already finished or hasnt’t even started.

  • 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-19T00:53:10+00:00Added an answer on May 19, 2026 at 12:53 am

    In that case you must override and hook the DialogInterface.OnClickListener and, from its implementation, set the value of orderBy. In fact, this is a better aproach:

    case SORT_MENU:
        showDialog(ORDER_DIALOG);
        break;
    

    Then, on onCreateDialog:

    case ORDER_DIALOG:
        AlertDialog.Builder orderBuilder = new AlertDialog.Builder(this);
        orderBuilder.setTitle("Order");
        orderBuilder.setItems(order, new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                String orderS;
                if (order[which].equalsIgnoreCase("Ascending"))
                    orderS = "ASC";
                else
                    orderS = "DESC";
    
                bundle.putString("order", orderS);
                dialog.dismiss();
                showDialog(COLUMNS_DIALOG); // <-- NEW!!!
            }
        });
        dialog = orderBuilder.create();
        break;
    

    Again, on onCreateDialog:

    case COLUMNS_DIALOG:
        AlertDialog.Builder columnBuilder = new AlertDialog.Builder(this);
        columnBuilder.setTitle("Columns");
        columnBuilder.setItems(columns, new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                bundle.putString("column", columns[which]);
                dialog.dismiss();
                configureString(); // <-- NEW!
            }
        });
        dialog = columnBuilder.create();
        break;
    

    Somewhere else:

    private void configureString(){
        String orderBy = bundle.getString("column") + bundle.getString("order");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a strange problem with mod_rewrite, the rules that are relevant here are:
Ok, i've read most relevant questions asked here previously on this but I still
Here is my code, which takes two version identifiers in the form 1, 5,
Here's a basic regex technique that I've never managed to remember. Let's say I'm
Here's a problem I ran into recently. I have attributes strings of the form
Here is the issue I am having: I have a large query that needs
Here's my scenario - I have an SSIS job that depends on another prior
Here is a simplification of my database: Table: Property Fields: ID, Address Table: Quote
Here's a coding problem for those that like this kind of thing. Let's see
Here is the scenario: I'm writing an app that will watch for any changes

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.