IndeterminateProgressDialog.java 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012-2013 ownCloud Inc.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.ui.dialog;
  19. import android.app.Dialog;
  20. import android.app.ProgressDialog;
  21. import android.content.DialogInterface;
  22. import android.content.DialogInterface.OnKeyListener;
  23. import android.os.Bundle;
  24. import android.view.KeyEvent;
  25. import com.actionbarsherlock.app.SherlockDialogFragment;
  26. import com.owncloud.android.R;
  27. public class IndeterminateProgressDialog extends SherlockDialogFragment {
  28. private static final String ARG_MESSAGE_ID = IndeterminateProgressDialog.class.getCanonicalName() + ".ARG_MESSAGE_ID";
  29. private static final String ARG_CANCELABLE = IndeterminateProgressDialog.class.getCanonicalName() + ".ARG_CANCELABLE";
  30. /**
  31. * Public factory method to get dialog instances.
  32. *
  33. * @param messageId Resource id for a message to show in the dialog.
  34. * @param cancelable If 'true', the dialog can be cancelled by the user input (BACK button, touch outside...)
  35. * @return New dialog instance, ready to show.
  36. */
  37. public static IndeterminateProgressDialog newInstance(int messageId, boolean cancelable) {
  38. IndeterminateProgressDialog fragment = new IndeterminateProgressDialog();
  39. Bundle args = new Bundle();
  40. args.putInt(ARG_MESSAGE_ID, messageId);
  41. args.putBoolean(ARG_CANCELABLE, cancelable);
  42. fragment.setArguments(args);
  43. return fragment;
  44. }
  45. /**
  46. * {@inheritDoc}
  47. */
  48. @Override
  49. public Dialog onCreateDialog(Bundle savedInstanceState) {
  50. /// create indeterminate progress dialog
  51. final ProgressDialog dialog = new ProgressDialog(getActivity());
  52. dialog.setIndeterminate(true);
  53. /// set message
  54. int messageId = getArguments().getInt(ARG_MESSAGE_ID, R.string.placeholder_sentence);
  55. dialog.setMessage(getString(messageId));
  56. /// set cancellation behavior
  57. boolean cancelable = getArguments().getBoolean(ARG_CANCELABLE, false);
  58. if (!cancelable) {
  59. dialog.setCancelable(false);
  60. // disable the back button
  61. OnKeyListener keyListener = new OnKeyListener() {
  62. @Override
  63. public boolean onKey(DialogInterface dialog, int keyCode,
  64. KeyEvent event) {
  65. if( keyCode == KeyEvent.KEYCODE_BACK){
  66. return true;
  67. }
  68. return false;
  69. }
  70. };
  71. dialog.setOnKeyListener(keyListener);
  72. }
  73. return dialog;
  74. }
  75. }