summaryrefslogtreecommitdiffstats
path: root/src/com/android/wallpaper/livepicker/LiveWallpaperPickActivity.java
blob: 6bb1777b1f0352de6a6dbe5a38af2bb8a0fb4a59 (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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*
 * Copyright (C) 2009 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.wallpaper.livepicker;

import org.xmlpull.v1.XmlPullParserException;

import android.app.Activity;
import android.app.WallpaperInfo;
import android.app.WallpaperManager;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.content.pm.ComponentInfo;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.os.Bundle;
import android.os.IBinder;
import android.os.ParcelFileDescriptor;
import android.os.RemoteException;
import android.service.wallpaper.IWallpaperConnection;
import android.service.wallpaper.IWallpaperEngine;
import android.service.wallpaper.IWallpaperService;
import android.service.wallpaper.WallpaperService;
import android.service.wallpaper.WallpaperSettingsActivity;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.widget.AdapterView;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.Gallery;
import android.widget.ImageView;
import android.widget.TextView;

import java.io.IOException;
import java.util.List;
import java.util.ArrayList;

/**
 * Displays a list of live wallpapers, allowing the user to select one
 * and make it the system global wallpaper.
 */
public class LiveWallpaperPickActivity extends Activity implements
        AdapterView.OnItemSelectedListener, View.OnClickListener {

    private static final String TAG = "LiveWallpaperPickActivity";

    private PackageManager mPackageManager;
    private WallpaperManager mWallpaperManager;
    
    Intent mSelectedIntent;
    WallpaperInfo mSelectedInfo;
    WallpaperConnection mWallpaperConnection;

    private Button mConfigureButton;
    private TextView mWallpaperTitle;
    
    private ArrayList<Intent> mWallpaperIntents;
    private ArrayList<WallpaperInfo> mWallpaperInfos;
 
    private ArrayList<Drawable> mThumbnails;

    class WallpaperConnection extends IWallpaperConnection.Stub implements ServiceConnection {
        final Intent mIntent;
        IWallpaperService mService;
        IWallpaperEngine mEngine;
        boolean mConnected;

        WallpaperConnection(Intent intent) {
            mIntent = intent;
        }

        public boolean connect() {
            synchronized (this) {
                if (!bindService(mIntent, this, Context.BIND_AUTO_CREATE)) {
                    return false;
                }
                
                mConnected = true;
                return true;
            }
        }
        
        public void disconnect() {
            synchronized (this) {
                mConnected = false;
                if (mEngine != null) {
                    try {
                        mEngine.destroy();
                    } catch (RemoteException e) {
                        // Ignore
                    }
                    mEngine = null;
                }
                unbindService(this);
                mService = null;
            }
        }
        
        public void onServiceConnected(ComponentName name, IBinder service) {
            if (mWallpaperConnection == this) {
                mService = IWallpaperService.Stub.asInterface(service);
                try {
                    View button = findViewById(R.id.set);
                    mService.attach(this, button.getWindowToken(),
                            WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA,
                            true,
                            button.getRootView().getWidth(),
                            button.getRootView().getHeight());
                } catch (RemoteException e) {
                    Log.w(TAG, "Failed attaching wallpaper; clearing", e);
                }
            }
        }

        public void onServiceDisconnected(ComponentName name) {
            mService = null;
            mEngine = null;
            if (mWallpaperConnection == this) {
                Log.w(TAG, "Wallpaper service gone: " + name);
            }
        }
        
        public void attachEngine(IWallpaperEngine engine) {
            synchronized (this) {
                if (mConnected) {
                    mEngine = engine;
                    try {
                        engine.setVisibility(true);
                    } catch (RemoteException e) {
                        // Ignore
                    }
                } else {
                    try {
                        engine.destroy();
                    } catch (RemoteException e) {
                        // Ignore
                    }
                }
            }
        }
        
        public ParcelFileDescriptor setWallpaper(String name) {
            return null;
        }
    }

    private class ImageAdapter extends BaseAdapter {
        private LayoutInflater mLayoutInflater;

        ImageAdapter(LiveWallpaperPickActivity context) {
            mLayoutInflater = context.getLayoutInflater();
        }

        public int getCount() {
            return mThumbnails.size();
        }

        public Object getItem(int position) {
            return position;
        }

        public long getItemId(int position) {
            return position;
        }

        public View getView(int position, View convertView, ViewGroup parent) {
            ImageView image;
           
            if (convertView == null) {
                image = (ImageView) mLayoutInflater.inflate(R.layout.wallpaper_item, parent, false);
                image.setLayoutParams(new Gallery.LayoutParams(
                        ViewGroup.LayoutParams.WRAP_CONTENT,
                        ViewGroup.LayoutParams.FILL_PARENT));
                image.setAdjustViewBounds(true);
                image.setScaleType(ImageView.ScaleType.FIT_CENTER);
            } else {
                image = (ImageView) convertView;
            }
          
            image.setImageDrawable(mThumbnails.get(position));

            return image;
        }
    }


    private void findLiveWallpapers() {
        mThumbnails = new ArrayList<Drawable>(24);
        List<ResolveInfo> list = mPackageManager.queryIntentServices(getTargetIntent(),
                PackageManager.GET_META_DATA);
        
        mWallpaperIntents = new ArrayList<Intent>(list.size());
        mWallpaperInfos = new ArrayList<WallpaperInfo>(list.size());
        
        int listSize = list.size();
        DisplayMetrics metrics = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(metrics);

        Drawable galleryIcon = getResources().getDrawable(R.drawable.livewallpaper_placeholder);
        
        Paint pt = new Paint(Paint.ANTI_ALIAS_FLAG|Paint.DITHER_FLAG);
        pt.setTextAlign(Paint.Align.CENTER);

        Canvas canvas = new Canvas();

        for (int i = 0; i < listSize; i++) {
            ResolveInfo resolveInfo = list.get(i);
            ComponentInfo ci = resolveInfo.serviceInfo;
            WallpaperInfo winfo;
            try {
                winfo = new WallpaperInfo(this, resolveInfo);
            } catch (XmlPullParserException e) {
                Log.w(TAG, "Skipping wallpaper " + ci, e);
                continue;
            } catch (IOException e) {
                Log.w(TAG, "Skipping wallpaper " + ci, e);
                continue;
            }

            String packageName = winfo.getPackageName();
            String className = winfo.getServiceName();
            Intent intent = new Intent(getTargetIntent());
            intent.setClassName(packageName, className);
            mWallpaperIntents.add(intent);
            mWallpaperInfos.add(winfo);

            Drawable thumb = winfo.loadThumbnail(mPackageManager);
            if (thumb == null) {
                final int thumbWidth = (int) (180 * metrics.density);
                final int thumbHeight = (int) (160 * metrics.density);
                Bitmap thumbBit = Bitmap.createBitmap(thumbWidth, thumbHeight,
                        Bitmap.Config.ARGB_8888);
                pt.setARGB(204,102,102,102);
                canvas.setBitmap(thumbBit);
                canvas.drawPaint(pt);

                galleryIcon.setBounds(0, 0, thumbWidth, thumbHeight);
                ((BitmapDrawable) galleryIcon).setGravity(Gravity.CENTER);
                galleryIcon.draw(canvas);

                pt.setARGB(255, 255, 255, 255);
                pt.setTextSize(20 * metrics.density);
                canvas.drawText(className.substring(className.lastIndexOf('.') + 1),
                        (int) (thumbWidth * 0.5), (int) (thumbHeight - 22 * metrics.density), pt);
                thumb = new BitmapDrawable(getResources(), thumbBit);
            }

            thumb.setDither(true);
            mThumbnails.add(thumb);
        }
    }
    
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);

        mPackageManager = getPackageManager();
        mWallpaperManager = WallpaperManager.getInstance(this);
        
        findLiveWallpapers();

        setContentView(R.layout.live_wallpaper_content);

        Gallery gallery = (Gallery) findViewById(R.id.gallery);
        gallery.setAdapter(new ImageAdapter(this));
        gallery.setOnItemSelectedListener(this);
        gallery.setCallbackDuringFling(false);

        View button = findViewById(R.id.set);
        button.setOnClickListener(this);
        
        mConfigureButton = (Button)findViewById(R.id.configure);
        mConfigureButton.setVisibility(View.GONE);
        mConfigureButton.setOnClickListener(this);

        mWallpaperTitle = (TextView)findViewById(R.id.title);
        mWallpaperTitle.setVisibility(View.GONE);
      
        // Set default return data
        setResult(RESULT_CANCELED);
    }
    
    @Override
    public void onResume() {
        super.onResume();
        if (mWallpaperConnection != null && mWallpaperConnection.mEngine != null) {
            try {
                mWallpaperConnection.mEngine.setVisibility(true);
            } catch (RemoteException e) {
                // Ignore
            }
        }
    }
    
    @Override
    public void onPause() {
        super.onPause();
        if (mWallpaperConnection != null && mWallpaperConnection.mEngine != null) {
            try {
                mWallpaperConnection.mEngine.setVisibility(false);
            } catch (RemoteException e) {
                // Ignore
            }
        }
    }
    
    @Override
    public void onDetachedFromWindow() {
        super.onDetachedFromWindow();
        if (mWallpaperConnection != null) {
            mWallpaperConnection.disconnect();
        }
        mWallpaperConnection = null;
    }
    
    protected Intent getTargetIntent() {
        return new Intent(WallpaperService.SERVICE_INTERFACE);
    }
    
    public void onItemSelected(AdapterView parent, View v, int position, long id) {
        mSelectedIntent = mWallpaperIntents.get(position);
        mSelectedInfo = mWallpaperInfos.get(position);
        mConfigureButton.setVisibility(
            (mSelectedInfo != null && 
                mSelectedInfo.getSettingsActivity() != null)
            ? View.VISIBLE
            : View.GONE);
        findViewById(R.id.set).setEnabled(true);

        findViewById(R.id.title).setVisibility(View.VISIBLE);
        mWallpaperTitle.setText(mSelectedInfo.loadLabel(mPackageManager).toString());
        
        WallpaperConnection conn = new WallpaperConnection(mSelectedIntent);
        if (conn.connect()) {
            if (mWallpaperConnection != null) {
                mWallpaperConnection.disconnect();
            }
            mWallpaperConnection = conn;
        }
    }
    
    public void onClick(View v) { // "Set" button
        if (v.getId() == R.id.set) {
            if (mSelectedIntent != null) {
                try {
                    mWallpaperManager.getIWallpaperManager().setWallpaperComponent(
                            mSelectedIntent.getComponent());
                    mWallpaperManager.setWallpaperOffsets(
                        v.getRootView().getWindowToken(), 0.5f, 0.0f);
                    this.setResult(RESULT_OK);
                } catch (RemoteException e) {
                    // do nothing
                } catch (RuntimeException e) {
                    Log.w(TAG, "Failure setting wallpaper", e);
                }
                finish();
            }
        } else if (v.getId() == R.id.configure) {
            if (mSelectedInfo != null && mSelectedInfo.getSettingsActivity() != null) {
                Intent intent = new Intent();
                intent.setComponent(new ComponentName(mSelectedInfo.getPackageName(),
                        mSelectedInfo.getSettingsActivity()));
                intent.putExtra(WallpaperSettingsActivity.EXTRA_PREVIEW_MODE, true);
                startActivity(intent);
            }
        }
    }

    public void onNothingSelected(AdapterView parent) {
    }
}