Android Open Source - mobilepower-android Progress Dialog Fragment






From Project

Back to project page mobilepower-android.

License

The source code is released under:

Apache License

If you think the Android project mobilepower-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2013 Dario Scoppelletti, <http://www.scoppelletti.it/>.
 * //from w ww . j a v a  2  s.  co m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package it.scoppelletti.mobilepower.app;

import android.app.*;
import android.content.*;
import android.os.*;
import android.support.v4.app.*;
import org.apache.commons.lang3.*;

/**
 * Dialogo con barra di avanzamento.
 * 
 * <P>Mentre &egrave; aperto un dialogo con barra di avanzamento, le voci di
 * men&ugrave; e della barra delle azioni non sono attivabili.</P>
 * 
 * @since 1.0
 */
public final class ProgressDialogFragment extends AbstractDialogFragment {
    
    /**
     * Tag del dialogo.
     */
    public static final String TAG = "ProgressDialog";
    
    private static final String ARG_TITLEID = "titleId";
    private static final String ARG_MAX = "max";
    private static final String ARG_CANCELABLE = "cancelable";
    private DialogInterface.OnCancelListener myOnCancelListener;
    
    /**
     * Costruttore.
     */
    public ProgressDialogFragment() {        
    }    
    
    /**
     * Istanzia un frammento.
     * 
     * @param  titleId    Identificatore della risorsa del titolo.
     * @param  max        Valore massimo dell&rsquo;indice di avanzamento. Se
     *                    &egrave; minore o uguale a {@code 0}, l&rsquo;indice
     *                    di avanzamento &egrave; indeterminato.
     * @param  cancelable Indicatore di dialogo cancellabile.
     * @return            Frammento.
     */    
    public static ProgressDialogFragment newInstance(int titleId, int max,
            boolean cancelable) {
        Bundle args;
        ProgressDialogFragment fragment;
        
        args = new Bundle();
        args.putInt(ProgressDialogFragment.ARG_TITLEID, titleId);
        args.putInt(ProgressDialogFragment.ARG_MAX, max);
        args.putBoolean(ProgressDialogFragment.ARG_CANCELABLE, cancelable);
        
        fragment = new ProgressDialogFragment();
        fragment.setArguments(args);
        fragment.setCancelable(cancelable);
        
        return fragment;         
    }
        
    /**
     * Crea il dialogo.
     * 
     * @param  savedInstanceState Stato dell&rsquo;istanza.
     * @return                    Dialogo.
     */
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        int max, resId;
        ProgressDialog dlg;
        Bundle args = getArguments();
        
        dlg = new ProgressDialog(getActivity(), AppUtils.getDialogTheme());
        
        resId = args.getInt(ProgressDialogFragment.ARG_TITLEID);
        dlg.setTitle(getString(resId));
        max = args.getInt(ProgressDialogFragment.ARG_MAX, -1);
        
        if (max > 0) {
            dlg.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
            dlg.setIndeterminate(false);
            dlg.setMax(max);
        } else {
            dlg.setIndeterminate(true);
            dlg.setProgressStyle(ProgressDialog.STYLE_SPINNER);
        }

        dlg.setCancelable(args.getBoolean(
                ProgressDialogFragment.ARG_CANCELABLE));
        dlg.setCanceledOnTouchOutside(false);

        return dlg;
    }    
    
    /**
     * Imposta la percentuale di avanzamento.
     * 
     * @param value Percentuale.
     */
    private void setProgress(int value) {
        ProgressDialog dlg = (ProgressDialog) getDialog();
     
        dlg.setProgress(value);
    }    
    
    /**
     * Imposta il gestore dell&rsquo;annullamento.
     * 
     * @param obj Oggetto.
     */
    public void setOnCancelListener(DialogInterface.OnCancelListener obj) {
        myOnCancelListener = obj;
    }
    
    /**
     * Gestisce l&rsquo;annullamento.
     * 
     * @param dlg Dialogo.
     */
    @Override
    public void onCancel(DialogInterface dlg) {
        super.onCancel(dlg);
        
        if (myOnCancelListener != null) {
            myOnCancelListener.onCancel(dlg);
        }
    }
    
    /**
     * Chiude un dialogo.
     * 
     * @param fragmentMgr Gestore dei frammenti.
     * @param tag         Tag del frammento.
     */    
    public static void dismiss(FragmentManager fragmentMgr, String tag) {
        ProgressDialogFragment dlg;
        
        if (StringUtils.isBlank(tag)) {
            throw new NullPointerException("Argument tag is null.");
        }        
        if (fragmentMgr == null) {
            return;
        }
        
        dlg = (ProgressDialogFragment) fragmentMgr.findFragmentByTag(tag);                
        if (dlg != null) {
            dlg.dismiss();
        }        
    }
    
    /**
     * Imposta la percentuale di avanzamento esposta da un dialogo.
     * 
     * @param fragmentMgr Gestore dei frammenti.
     * @param tag         Tag del frammento.
     * @param progress    Percentuale di avanzamento.
     */    
    public static void setProgress(FragmentManager fragmentMgr, String tag,
            int progress) {
        ProgressDialogFragment dlg;
        
        if (StringUtils.isBlank(tag)) {
            throw new NullPointerException("Argument tag is null.");
        }        
        if (fragmentMgr == null) {
            return;
        }
        
        dlg = (ProgressDialogFragment) fragmentMgr.findFragmentByTag(tag);                
        if (dlg != null) {
            dlg.setProgress(progress);
        }        
    }    
}




Java Source Code List

it.scoppelletti.mobilepower.app.AboutActivity.java
it.scoppelletti.mobilepower.app.AbstractActivity.java
it.scoppelletti.mobilepower.app.AbstractDialogFragment.java
it.scoppelletti.mobilepower.app.AbstractFragment.java
it.scoppelletti.mobilepower.app.AbstractPreferenceActivity.java
it.scoppelletti.mobilepower.app.ActionBarCompat.java
it.scoppelletti.mobilepower.app.ActionBarSupport.java
it.scoppelletti.mobilepower.app.ActivitySupport.java
it.scoppelletti.mobilepower.app.AppUtils.java
it.scoppelletti.mobilepower.app.CommonMenuFragment.java
it.scoppelletti.mobilepower.app.ConfirmDialogFragment.java
it.scoppelletti.mobilepower.app.DatePickerDialogFragment.java
it.scoppelletti.mobilepower.app.FragmentLayoutController.java
it.scoppelletti.mobilepower.app.FragmentSupport.java
it.scoppelletti.mobilepower.app.HelpActivity.java
it.scoppelletti.mobilepower.app.HelpDialogFragment.java
it.scoppelletti.mobilepower.app.MarketTagHandler.java
it.scoppelletti.mobilepower.app.ProgressDialogFragment.java
it.scoppelletti.mobilepower.app.ReleaseNoteActivity.java
it.scoppelletti.mobilepower.app.bluetooth.ActivityBTManager.java
it.scoppelletti.mobilepower.app.data.DatabaseConnectionManager.java
it.scoppelletti.mobilepower.app.data.DatabaseUpgradeTask.java
it.scoppelletti.mobilepower.app.security.ActivityLicenseClient.java
it.scoppelletti.mobilepower.app.security.LicenseBuyDialogFragment.java
it.scoppelletti.mobilepower.app.security.LicenseDemoDialogFragment.java
it.scoppelletti.mobilepower.app.security.LicenseRetryDialogFragment.java
it.scoppelletti.mobilepower.bluetooth.BTManager.java
it.scoppelletti.mobilepower.bluetooth.BTTask.java
it.scoppelletti.mobilepower.bluetooth.OnBTListener.java
it.scoppelletti.mobilepower.data.DatabaseUpgrader.java
it.scoppelletti.mobilepower.data.OnDatabaseConnectionListener.java
it.scoppelletti.mobilepower.graphics.GraphicTools.java
it.scoppelletti.mobilepower.graphics.SizeF.java
it.scoppelletti.mobilepower.io.IOTools.java
it.scoppelletti.mobilepower.media.DefaultOnScanCompletedListener.java
it.scoppelletti.mobilepower.os.AbstractAsyncTask.java
it.scoppelletti.mobilepower.os.AsyncTaskController.java
it.scoppelletti.mobilepower.os.AsyncTaskHost.java
it.scoppelletti.mobilepower.os.BuildCompat.java
it.scoppelletti.mobilepower.preference.AbstractDialogPreference.java
it.scoppelletti.mobilepower.preference.BTDevicePreference.java
it.scoppelletti.mobilepower.preference.ColorPreference.java
it.scoppelletti.mobilepower.preference.EditTextPreferenceEx.java
it.scoppelletti.mobilepower.preference.IntegerSpinnerPreference.java
it.scoppelletti.mobilepower.preference.PreferenceSavedState.java
it.scoppelletti.mobilepower.preference.SeekBarPreference.java
it.scoppelletti.mobilepower.provider.ContactsContractCompat.java
it.scoppelletti.mobilepower.reflect.MemberCache.java
it.scoppelletti.mobilepower.security.LicenseClient.java
it.scoppelletti.mobilepower.types.SimpleDate.java
it.scoppelletti.mobilepower.types.StringTools.java
it.scoppelletti.mobilepower.types.TimeTools.java
it.scoppelletti.mobilepower.types.ValueTools.java
it.scoppelletti.mobilepower.types.ValueType.java
it.scoppelletti.mobilepower.view.ViewSavedState.java
it.scoppelletti.mobilepower.widget.CompoundControl.java
it.scoppelletti.mobilepower.widget.DateControl.java
it.scoppelletti.mobilepower.widget.ImageButtonCompat.java
it.scoppelletti.mobilepower.widget.IntegerSpinner.java
it.scoppelletti.mobilepower.widget.IntegerTextWatcher.java
it.scoppelletti.mobilepower.widget.WidgetTools.java