summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/ingest/ui/MtpThumbnailTileView.java
blob: 2aeda73db9d931b4cf26ec152c6d0ad9557e8518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.gallery3d.ingest.ui;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.mtp.MtpDevice;
import android.mtp.MtpObjectInfo;
import android.os.AsyncTask;
import android.util.AttributeSet;
import android.view.View;
import android.widget.Checkable;
import android.widget.ImageView;

import com.android.gallery3d.R;

public class MtpThumbnailTileView extends ImageView implements Checkable {
    private static final int FADE_IN_TIME_MS = 80;

    private Paint mForegroundPaint;
    private boolean mIsChecked;
    private int mObjectHandle;
    private int mGeneration;

    private void init() {
        mForegroundPaint = new Paint();
        mForegroundPaint.setColor(getResources().getColor(R.color.ingest_highlight_semitransparent));
        showPlaceholder();
    }

    public MtpThumbnailTileView(Context context) {
        super(context);
        init();
    }

    public MtpThumbnailTileView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public MtpThumbnailTileView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init();
    }

    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        // Force this to be square
        super.onMeasure(widthMeasureSpec, widthMeasureSpec);
    }

    @Override
    public void draw(Canvas canvas) {
        super.draw(canvas);
        if (mIsChecked) {
            canvas.drawRect(canvas.getClipBounds(), mForegroundPaint);
        }
    }

    @Override
    public boolean isChecked() {
        return mIsChecked;
    }

    @Override
    public void setChecked(boolean checked) {
        mIsChecked = checked;
    }

    @Override
    public void toggle() {
        setChecked(!mIsChecked);
    }

    private void showPlaceholder() {
        setAlpha(0f);
    }

    private LoadThumbnailTask mTask;

    public void setMtpDeviceAndObjectInfo(MtpDevice device, MtpObjectInfo object, int gen) {
        int handle = object.getObjectHandle();
        if (handle == mObjectHandle && gen == mGeneration) {
            return;
        }
        animate().cancel();
        if (mTask != null) {
            mTask.cancel(true);
        }
        mGeneration = gen;
        mObjectHandle = handle;
        Bitmap thumbnail = MtpBitmapCache.getInstanceForDevice(device)
                .get(handle);
        if (thumbnail != null) {
            setAlpha(1f);
            setImageBitmap(thumbnail);
        } else {
            showPlaceholder();
            mTask = new LoadThumbnailTask(device);
            mTask.execute(object);
        }
    }

    private class LoadThumbnailTask extends AsyncTask<MtpObjectInfo, Void, Bitmap> {
        private MtpDevice mDevice;

        public LoadThumbnailTask(MtpDevice device) {
            mDevice = device;
        }

        @Override
        protected Bitmap doInBackground(MtpObjectInfo... args) {
            Bitmap result = null;
            if (!isCancelled()) {
                result = MtpBitmapCache.getInstanceForDevice(mDevice).getOrCreate(
                        args[0].getObjectHandle());
            }
            mDevice = null;
            return result;
        }

        @Override
        protected void onPostExecute(Bitmap result) {
            if (isCancelled() || result == null) {
                return;
            }
            setAlpha(0f);
            setImageBitmap(result);
            animate().alpha(1f).setDuration(FADE_IN_TIME_MS);
        }

        @Override
        protected void onCancelled() {
        }
    }
}