OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PhotoDecodeRunnable
(Results
1 - 3
of
3
) sorted by null
/development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoTask.java
19
import com.example.android.threadsample.
PhotoDecodeRunnable
.TaskRunnableDecodeMethods;
93
mDecodeRunnable = new
PhotoDecodeRunnable
(this);
186
// Returns the image that
PhotoDecodeRunnable
decoded.
268
// Implements
PhotoDecodeRunnable
.setImageDecodeThread(). Calls setCurrentThread().
275
* Implements
PhotoDecodeRunnable
.handleDecodeState(). Passes the decoding state to the
284
case
PhotoDecodeRunnable
.DECODE_STATE_COMPLETED:
287
case
PhotoDecodeRunnable
.DECODE_STATE_FAILED:
PhotoDecodeRunnable.java
28
* {@link #
PhotoDecodeRunnable
(TaskRunnableDecodeMethods)
PhotoDecodeRunnable
()} with
30
*
PhotoDecodeRunnable
object communicate through the fields of the PhotoTask.
33
class
PhotoDecodeRunnable
implements Runnable {
42
private static final String LOG_TAG = "
PhotoDecodeRunnable
";
55
* PhotoTask passes itself to an
PhotoDecodeRunnable
instance through the
56
*
PhotoDecodeRunnable
constructor, after which the two instances can access each other's
104
PhotoDecodeRunnable
(TaskRunnableDecodeMethods downloadTask) {
268
Log.e(LOG_TAG, "Download failed in
PhotoDecodeRunnable
");
PhotoDownloadRunnable.java
19
import com.example.android.threadsample.
PhotoDecodeRunnable
.TaskRunnableDecodeMethods;
Completed in 45 milliseconds