OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PhotoDownloadRunnable
(Results
1 - 2
of
2
) sorted by null
/development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoTask.java
20
import com.example.android.threadsample.
PhotoDownloadRunnable
.TaskRunnableDownloadMethods;
28
* This class manages
PhotoDownloadRunnable
and
PhotoDownloadRunnable
objects. It does't perform
92
mDownloadRunnable = new
PhotoDownloadRunnable
(this);
152
// Implements
PhotoDownloadRunnable
.getTargetWidth. Returns the global target width.
158
// Implements
PhotoDownloadRunnable
.getTargetHeight. Returns the global target height.
169
// Implements
PhotoDownloadRunnable
.getImageURL. Returns the global Image URL.
175
// Implements
PhotoDownloadRunnable
.setByteBuffer. Sets the image buffer to a buffer object.
237
// Implements
PhotoDownloadRunnable
.setHTTPDownloadThread(). Calls setCurrentThread().
244
* Implements
PhotoDownloadRunnable
.handleHTTPState(). Passes the download state to th
[
all
...]
PhotoDownloadRunnable.java
33
* {@link #
PhotoDownloadRunnable
(TaskRunnableDownloadMethods)
PhotoDownloadRunnable
()} with
35
*
PhotoDownloadRunnable
object communicate through the fields of the PhotoTask.
37
class
PhotoDownloadRunnable
implements Runnable {
43
private static final String LOG_TAG = "
PhotoDownloadRunnable
";
56
* PhotoTask passes itself to an
PhotoDownloadRunnable
instance through the
57
*
PhotoDownloadRunnable
constructor, after which the two instances can access each other's
94
* This constructor creates an instance of
PhotoDownloadRunnable
and stores in it a reference
99
PhotoDownloadRunnable
(TaskRunnableDownloadMethods photoTask) {
121
* to both
PhotoDownloadRunnable
and PhotoTask
[
all
...]
Completed in 26 milliseconds