Home | History | Annotate | Download | only in os

Lines Matching refs:Progress

41  * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
70 * protected void onProgressUpdate(Integer... progress) {
71 * setProgressPercent(progress[0]);
90 * <li><code>Progress</code>, the type of the progress units published during
106 * showing a progress bar in the user interface.</li>
113 * of progress. These values are published on the UI thread, in the
117 * undefined. This method is used to display any form of progress in the user
119 * it can be used to animate a progress bar or show logs in a text field.</li>
156 public abstract class AsyncTask<Params, Progress, Result> {
360 * @param values The values indicating progress.
366 protected void onProgressUpdate(Progress... values) {
436 * task should be interrupted; otherwise, in-progress tasks are allowed
510 public final AsyncTask<Params, Progress, Result> execute(Params... params) {
545 public final AsyncTask<Params, Progress, Result> executeOnExecutor(Executor exec,
586 * @param values The progress values to update the UI with.
591 protected final void publishProgress(Progress... values) {
594 new AsyncTaskResult<Progress>(this, values)).sendToTarget();