Merge change 917 into donut

* changes:
  Fix HTML formatting in android.os.AsyncTask
This commit is contained in:
Android (Google) Code Review
2009-05-02 22:42:00 -07:00

View File

@@ -37,7 +37,7 @@ import java.util.concurrent.atomic.AtomicInteger;
* whose result is published on the UI thread. An asynchronous task is defined by 3 generic
* types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>,
* and 4 steps, called <code>begin</code>, <code>doInBackground</code>,
* <code>processProgress<code> and <code>end</code>.</p>
* <code>processProgress</code> and <code>end</code>.</p>
*
* <h2>Usage</h2>
* <p>AsyncTask must be subclassed to be used. The subclass will override at least