@Override
 public void onPreExecute() {
   Resources res = getResources();
   mProgressDialog =
       StyledProgressDialog.show(
           CardBrowser.this, "", res.getString(R.string.saving_changes), true);
 }
Example #2
0
 @Override
 public void onPreExecute() {
   Resources res = getResources();
   mProgressDialog =
       StyledProgressDialog.show(
           DeckOptions.this, "", res.getString(R.string.reordering_cards), false);
 }
  public static StyledProgressDialog show(
      Context context,
      CharSequence title,
      CharSequence message,
      boolean indeterminable,
      boolean cancelable,
      DialogInterface.OnCancelListener cancelListener) {
    final StyledProgressDialog dialog = new StyledProgressDialog(context);
    LayoutInflater inflater =
        (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    View layout = inflater.inflate(R.layout.styled_progress_dialog, null);
    dialog.addContentView(
        layout, new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));

    // set title
    if (title != null && title.length() > 0) {
      ((TextView) layout.findViewById(R.id.alertTitle)).setText(title);
      // if (icon != 0) {
      // ((ImageView) layout.findViewById(R.id.icon)).setImageResource(icon);
      // } else {
      // layout.findViewById(R.id.icon).setVisibility(View.GONE);
      // }
    } else {
      layout.findViewById(R.id.topPanel).setVisibility(View.GONE);
      layout.findViewById(R.id.titleDivider).setVisibility(View.GONE);
    }

    // set the message
    if (message != null) {
      TextView tv = (TextView) layout.findViewById(R.id.message);
      tv.setText(message);
      // if (messageSize != 0) {
      // tv.setTextSize(messageSize * context.getResources().getDisplayMetrics().scaledDensity);
      // }
    }

    // set background
    try {
      Themes.setStyledProgressDialogDialogBackgrounds(layout);
    } catch (OutOfMemoryError e) {
      Log.e(AnkiDroidApp.TAG, "StyledDialog - Dialog could not be created: " + e);
      Themes.showThemedToast(
          context, context.getResources().getString(R.string.error_insufficient_memory), false);
      return null;
    }

    dialog.setContentView(layout);
    dialog.setCancelable(cancelable);
    dialog.setOnCancelListener(cancelListener);
    if (animationEnabled(context)) {
      dialog.show();
    }
    return dialog;
  }
 @Override
 public void onPreExecute() {
   Resources res = getResources();
   if (mProgressDialog != null && mProgressDialog.isShowing()) {
     mProgressDialog.setMessage(res.getString(R.string.card_browser_sorting_cards));
   } else {
     mProgressDialog =
         StyledProgressDialog.show(
             CardBrowser.this, "", res.getString(R.string.card_browser_sorting_cards), true);
   }
 }
        @Override
        public void onPreExecute() {
          if (!mUndoRedoDialogShowing) {
            if (mProgressDialog != null && mProgressDialog.isShowing()) {
              mProgressDialog.setMessage(getResources().getString(R.string.card_browser_load));
              mProgressDialog.setOnCancelListener(
                  new OnCancelListener() {

                    @Override
                    public void onCancel(DialogInterface arg0) {
                      canceled = true;
                      DeckTask.cancelTask();
                      closeCardBrowser();
                    }
                  });
            } else {
              mProgressDialog =
                  StyledProgressDialog.show(
                      CardBrowser.this,
                      "",
                      getResources().getString(R.string.card_browser_load),
                      true,
                      true,
                      new OnCancelListener() {

                        @Override
                        public void onCancel(DialogInterface arg0) {
                          canceled = true;
                          DeckTask.cancelTask();
                          closeCardBrowser();
                        }
                      });
            }
          } else {
            mProgressDialog.setMessage(getResources().getString(R.string.card_browser_load));
            mUndoRedoDialogShowing = false;
          }
        }
Example #6
0
 @Override
 public void onPreExecute() {
   mProgressDialog = StyledProgressDialog.show(Preferences.this, "", dialogMessage, true);
 }