Home | History | Annotate | Download | only in util

Lines Matching refs:Progress

68  * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
99 * protected void onProgressUpdate(Integer... progress) {
100 * setProgressPercent(progress[0]);
119 * <li><code>Progress</code>, the type of the progress units published during
135 * showing a progress bar in the user interface.</li>
142 * of progress. These values are published on the UI thread, in the
146 * undefined. This method is used to display any form of progress in the user
148 * it can be used to animate a progress bar or show logs in a text field.</li>
197 public abstract class AsyncTask<Params, Progress, Result> {
405 * @param values The values indicating progress.
411 protected void onProgressUpdate(Progress... values) {
481 * task should be interrupted; otherwise, in-progress tasks are allowed
559 public final AsyncTask<Params, Progress, Result> execute(Params... params) {
596 public final AsyncTask<Params, Progress, Result> executeOnExecutor(Executor exec,
641 * @param values The progress values to update the UI with.
646 protected final void publishProgress(Progress... values) {
649 new AsyncTaskResult<Progress>(this, values)).sendToTarget();