Home | History | Annotate | Download | only in os

Lines Matching refs:Progress

51  * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
82 * protected void onProgressUpdate(Integer... progress) {
83 * setProgressPercent(progress[0]);
102 * <li><code>Progress</code>, the type of the progress units published during
118 * showing a progress bar in the user interface.</li>
125 * of progress. These values are published on the UI thread, in the
129 * undefined. This method is used to display any form of progress in the user
131 * it can be used to animate a progress bar or show logs in a text field.</li>
180 public abstract class AsyncTask<Params, Progress, Result> {
408 * @param values The values indicating progress.
415 protected void onProgressUpdate(Progress... values) {
487 * task should be interrupted; otherwise, in-progress tasks are allowed
566 public final AsyncTask<Params, Progress, Result> execute(Params... params) {
604 public final AsyncTask<Params, Progress, Result> executeOnExecutor(Executor exec,
650 * @param values The progress values to update the UI with.
656 protected final void publishProgress(Progress... values) {
659 new AsyncTaskResult<Progress>(this, values)).sendToTarget();