OSDN Git Service

Don't crash when long-pressing on a stream.
[android-x86/packages-apps-Music.git] / src / com / android / music / MediaPlaybackActivity.java
1 /*
2  * Copyright (C) 2007 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.android.music;
18
19 import android.app.Activity;
20 import android.app.AlertDialog;
21 import android.app.SearchManager;
22 import android.content.BroadcastReceiver;
23 import android.content.ComponentName;
24 import android.content.ContentResolver;
25 import android.content.ContentUris;
26 import android.content.Context;
27 import android.content.DialogInterface;
28 import android.content.Intent;
29 import android.content.IntentFilter;
30 import android.content.ServiceConnection;
31 import android.content.res.Configuration;
32 import android.content.res.Resources;
33 import android.database.Cursor;
34 import android.graphics.Bitmap;
35 import android.media.AudioManager;
36 import android.media.MediaFile;
37 import android.net.Uri;
38 import android.os.Bundle;
39 import android.os.RemoteException;
40 import android.os.Handler;
41 import android.os.IBinder;
42 import android.os.Looper;
43 import android.os.Message;
44 import android.os.SystemClock;
45 import android.provider.MediaStore;
46 import android.text.Layout;
47 import android.text.TextUtils.TruncateAt;
48 import android.util.Log;
49 import android.view.KeyEvent;
50 import android.view.Menu;
51 import android.view.MenuItem;
52 import android.view.MotionEvent;
53 import android.view.SubMenu;
54 import android.view.View;
55 import android.view.ViewConfiguration;
56 import android.view.Window;
57 import android.widget.ImageButton;
58 import android.widget.ImageView;
59 import android.widget.ProgressBar;
60 import android.widget.SeekBar;
61 import android.widget.TextView;
62 import android.widget.Toast;
63 import android.widget.SeekBar.OnSeekBarChangeListener;
64
65
66 public class MediaPlaybackActivity extends Activity implements MusicUtils.Defs,
67     View.OnTouchListener, View.OnLongClickListener
68 {
69     private static final int USE_AS_RINGTONE = CHILD_MENU_BASE;
70     
71     private boolean mOneShot = false;
72     private boolean mSeeking = false;
73     private boolean mDeviceHasNoDpad;
74     private long mStartSeekPos = 0;
75     private long mLastSeekEventTime;
76     private IMediaPlaybackService mService = null;
77     private RepeatingImageButton mPrevButton;
78     private ImageButton mPauseButton;
79     private RepeatingImageButton mNextButton;
80     private ImageButton mRepeatButton;
81     private ImageButton mShuffleButton;
82     private ImageButton mQueueButton;
83     private Worker mAlbumArtWorker;
84     private AlbumArtHandler mAlbumArtHandler;
85     private Toast mToast;
86     private int mTouchSlop;
87
88     public MediaPlaybackActivity()
89     {
90     }
91
92     /** Called when the activity is first created. */
93     @Override
94     public void onCreate(Bundle icicle)
95     {
96         super.onCreate(icicle);
97         setVolumeControlStream(AudioManager.STREAM_MUSIC);
98
99         mAlbumArtWorker = new Worker("album art worker");
100         mAlbumArtHandler = new AlbumArtHandler(mAlbumArtWorker.getLooper());
101
102         requestWindowFeature(Window.FEATURE_NO_TITLE);
103         setContentView(R.layout.audio_player);
104
105         mCurrentTime = (TextView) findViewById(R.id.currenttime);
106         mTotalTime = (TextView) findViewById(R.id.totaltime);
107         mProgress = (ProgressBar) findViewById(android.R.id.progress);
108         mAlbum = (ImageView) findViewById(R.id.album);
109         mArtistName = (TextView) findViewById(R.id.artistname);
110         mAlbumName = (TextView) findViewById(R.id.albumname);
111         mTrackName = (TextView) findViewById(R.id.trackname);
112
113         View v = (View)mArtistName.getParent(); 
114         v.setOnTouchListener(this);
115         v.setOnLongClickListener(this);
116
117         v = (View)mAlbumName.getParent();
118         v.setOnTouchListener(this);
119         v.setOnLongClickListener(this);
120
121         v = (View)mTrackName.getParent();
122         v.setOnTouchListener(this);
123         v.setOnLongClickListener(this);
124         
125         mPrevButton = (RepeatingImageButton) findViewById(R.id.prev);
126         mPrevButton.setOnClickListener(mPrevListener);
127         mPrevButton.setRepeatListener(mRewListener, 260);
128         mPauseButton = (ImageButton) findViewById(R.id.pause);
129         mPauseButton.requestFocus();
130         mPauseButton.setOnClickListener(mPauseListener);
131         mNextButton = (RepeatingImageButton) findViewById(R.id.next);
132         mNextButton.setOnClickListener(mNextListener);
133         mNextButton.setRepeatListener(mFfwdListener, 260);
134         seekmethod = 1;
135
136         mDeviceHasNoDpad = (getResources().getConfiguration().navigation != 
137             Configuration.NAVIGATION_DPAD);
138         
139         mQueueButton = (ImageButton) findViewById(R.id.curplaylist);
140         mQueueButton.setOnClickListener(mQueueListener);
141         mShuffleButton = ((ImageButton) findViewById(R.id.shuffle));
142         mShuffleButton.setOnClickListener(mShuffleListener);
143         mRepeatButton = ((ImageButton) findViewById(R.id.repeat));
144         mRepeatButton.setOnClickListener(mRepeatListener);
145         
146         if (mProgress instanceof SeekBar) {
147             SeekBar seeker = (SeekBar) mProgress;
148             seeker.setOnSeekBarChangeListener(mSeekListener);
149         }
150         mProgress.setMax(1000);
151         
152         if (icicle != null) {
153             mOneShot = icicle.getBoolean("oneshot");
154         } else {
155             mOneShot = getIntent().getBooleanExtra("oneshot", false);
156         }
157
158         mTouchSlop = ViewConfiguration.get(this).getScaledTouchSlop();
159     }
160     
161     int mInitialX = -1;
162     int mLastX = -1;
163     int mTextWidth = 0;
164     int mViewWidth = 0;
165     boolean mDraggingLabel = false;
166     
167     TextView textViewForContainer(View v) {
168         View vv = v.findViewById(R.id.artistname);
169         if (vv != null) return (TextView) vv;
170         vv = v.findViewById(R.id.albumname);
171         if (vv != null) return (TextView) vv;
172         vv = v.findViewById(R.id.trackname);
173         if (vv != null) return (TextView) vv;
174         return null;
175     }
176     
177     public boolean onTouch(View v, MotionEvent event) {
178         int action = event.getAction();
179         TextView tv = textViewForContainer(v);
180         if (tv == null) {
181             return false;
182         }
183         if (action == MotionEvent.ACTION_DOWN) {
184             v.setBackgroundColor(0xff606060);
185             mInitialX = mLastX = (int) event.getX();
186             mDraggingLabel = false;
187         } else if (action == MotionEvent.ACTION_UP ||
188                 action == MotionEvent.ACTION_CANCEL) {
189             v.setBackgroundColor(0);
190             if (mDraggingLabel) {
191                 Message msg = mLabelScroller.obtainMessage(0, tv);
192                 mLabelScroller.sendMessageDelayed(msg, 1000);
193             }
194         } else if (action == MotionEvent.ACTION_MOVE) {
195             if (mDraggingLabel) {
196                 int scrollx = tv.getScrollX();
197                 int x = (int) event.getX();
198                 int delta = mLastX - x;
199                 if (delta != 0) {
200                     mLastX = x;
201                     scrollx += delta;
202                     if (scrollx > mTextWidth) {
203                         // scrolled the text completely off the view to the left
204                         scrollx -= mTextWidth;
205                         scrollx -= mViewWidth;
206                     }
207                     if (scrollx < -mViewWidth) {
208                         // scrolled the text completely off the view to the right
209                         scrollx += mViewWidth;
210                         scrollx += mTextWidth;
211                     }
212                     tv.scrollTo(scrollx, 0);
213                 }
214                 return true;
215             }
216             int delta = mInitialX - (int) event.getX();
217             if (Math.abs(delta) > mTouchSlop) {
218                 // start moving
219                 mLabelScroller.removeMessages(0, tv);
220                 
221                 // Only turn ellipsizing off when it's not already off, because it
222                 // causes the scroll position to be reset to 0.
223                 if (tv.getEllipsize() != null) {
224                     tv.setEllipsize(null);
225                 }
226                 Layout ll = tv.getLayout();
227                 // layout might be null if the text just changed, or ellipsizing
228                 // was just turned off
229                 if (ll == null) {
230                     return false;
231                 }
232                 // get the non-ellipsized line width, to determine whether scrolling
233                 // should even be allowed
234                 mTextWidth = (int) tv.getLayout().getLineWidth(0);
235                 mViewWidth = tv.getWidth();
236                 if (mViewWidth > mTextWidth) {
237                     tv.setEllipsize(TruncateAt.END);
238                     v.cancelLongPress();
239                     return false;
240                 }
241                 mDraggingLabel = true;
242                 tv.setHorizontalFadingEdgeEnabled(true);
243                 v.cancelLongPress();
244                 return true;
245             }
246         }
247         return false; 
248     }
249
250     Handler mLabelScroller = new Handler() {
251         @Override
252         public void handleMessage(Message msg) {
253             TextView tv = (TextView) msg.obj;
254             int x = tv.getScrollX();
255             x = x * 3 / 4;
256             tv.scrollTo(x, 0);
257             if (x == 0) {
258                 tv.setEllipsize(TruncateAt.END);
259             } else {
260                 Message newmsg = obtainMessage(0, tv);
261                 mLabelScroller.sendMessageDelayed(newmsg, 15);
262             }
263         }
264     };
265     
266     public boolean onLongClick(View view) {
267
268         CharSequence title = null;
269         String mime = null;
270         String query = null;
271         String artist;
272         String album;
273         String song;
274         long audioid;
275         
276         try {
277             artist = mService.getArtistName();
278             album = mService.getAlbumName();
279             song = mService.getTrackName();
280             audioid = mService.getAudioId();
281         } catch (RemoteException ex) {
282             return true;
283         }
284
285         if (MediaFile.UNKNOWN_STRING.equals(album) &&
286                 MediaFile.UNKNOWN_STRING.equals(artist) &&
287                 song != null &&
288                 song.startsWith("recording")) {
289             // not music
290             return false;
291         }
292
293         if (audioid < 0) {
294             return false;
295         }
296
297         Cursor c = MusicUtils.query(this,
298                 ContentUris.withAppendedId(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, audioid),
299                 new String[] {MediaStore.Audio.Media.IS_MUSIC}, null, null, null);
300         boolean ismusic = true;
301         if (c != null) {
302             if (c.moveToFirst()) {
303                 ismusic = c.getInt(0) != 0;
304             }
305             c.close();
306         }
307         if (!ismusic) {
308             return false;
309         }
310
311         boolean knownartist =
312             (artist != null) && !MediaFile.UNKNOWN_STRING.equals(artist);
313
314         boolean knownalbum =
315             (album != null) && !MediaFile.UNKNOWN_STRING.equals(album);
316         
317         if (knownartist && view.equals(mArtistName.getParent())) {
318             title = artist;
319             query = artist;
320             mime = MediaStore.Audio.Artists.ENTRY_CONTENT_TYPE;
321         } else if (knownalbum && view.equals(mAlbumName.getParent())) {
322             title = album;
323             if (knownartist) {
324                 query = artist + " " + album;
325             } else {
326                 query = album;
327             }
328             mime = MediaStore.Audio.Albums.ENTRY_CONTENT_TYPE;
329         } else if (view.equals(mTrackName.getParent()) || !knownartist || !knownalbum) {
330             if ((song == null) || MediaFile.UNKNOWN_STRING.equals(song)) {
331                 // A popup of the form "Search for null/'' using ..." is pretty
332                 // unhelpful, plus, we won't find any way to buy it anyway.
333                 return true;
334             }
335
336             title = song;
337             if (knownartist) {
338                 query = artist + " " + song;
339             } else {
340                 query = song;
341             }
342             mime = "audio/*"; // the specific type doesn't matter, so don't bother retrieving it
343         } else {
344             throw new RuntimeException("shouldn't be here");
345         }
346         title = getString(R.string.mediasearch, title);
347
348         Intent i = new Intent();
349         i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
350         i.setAction(MediaStore.INTENT_ACTION_MEDIA_SEARCH);
351         i.putExtra(SearchManager.QUERY, query);
352         if(knownartist) {
353             i.putExtra(MediaStore.EXTRA_MEDIA_ARTIST, artist);
354         }
355         if(knownalbum) {
356             i.putExtra(MediaStore.EXTRA_MEDIA_ALBUM, album);
357         }
358         i.putExtra(MediaStore.EXTRA_MEDIA_TITLE, song);
359         i.putExtra(MediaStore.EXTRA_MEDIA_FOCUS, mime);
360
361         startActivity(Intent.createChooser(i, title));
362         return true;
363     }
364
365     private OnSeekBarChangeListener mSeekListener = new OnSeekBarChangeListener() {
366         public void onStartTrackingTouch(SeekBar bar) {
367             mLastSeekEventTime = 0;
368             mFromTouch = true;
369         }
370         public void onProgressChanged(SeekBar bar, int progress, boolean fromuser) {
371             if (!fromuser || (mService == null)) return;
372             long now = SystemClock.elapsedRealtime();
373             if ((now - mLastSeekEventTime) > 250) {
374                 mLastSeekEventTime = now;
375                 mPosOverride = mDuration * progress / 1000;
376                 try {
377                     mService.seek(mPosOverride);
378                 } catch (RemoteException ex) {
379                 }
380
381                 // trackball event, allow progress updates
382                 if (!mFromTouch) {
383                     refreshNow();
384                     mPosOverride = -1;
385                 }
386             }
387         }
388         public void onStopTrackingTouch(SeekBar bar) {
389             mPosOverride = -1;
390             mFromTouch = false;
391         }
392     };
393     
394     private View.OnClickListener mQueueListener = new View.OnClickListener() {
395         public void onClick(View v) {
396             startActivity(
397                     new Intent(Intent.ACTION_EDIT)
398                     .setDataAndType(Uri.EMPTY, "vnd.android.cursor.dir/track")
399                     .putExtra("playlist", "nowplaying")
400             );
401         }
402     };
403     
404     private View.OnClickListener mShuffleListener = new View.OnClickListener() {
405         public void onClick(View v) {
406             toggleShuffle();
407         }
408     };
409
410     private View.OnClickListener mRepeatListener = new View.OnClickListener() {
411         public void onClick(View v) {
412             cycleRepeat();
413         }
414     };
415
416     private View.OnClickListener mPauseListener = new View.OnClickListener() {
417         public void onClick(View v) {
418             doPauseResume();
419         }
420     };
421
422     private View.OnClickListener mPrevListener = new View.OnClickListener() {
423         public void onClick(View v) {
424             if (mService == null) return;
425             try {
426                 if (mService.position() < 2000) {
427                     mService.prev();
428                 } else {
429                     mService.seek(0);
430                     mService.play();
431                 }
432             } catch (RemoteException ex) {
433             }
434         }
435     };
436
437     private View.OnClickListener mNextListener = new View.OnClickListener() {
438         public void onClick(View v) {
439             if (mService == null) return;
440             try {
441                 mService.next();
442             } catch (RemoteException ex) {
443             }
444         }
445     };
446
447     private RepeatingImageButton.RepeatListener mRewListener =
448         new RepeatingImageButton.RepeatListener() {
449         public void onRepeat(View v, long howlong, int repcnt) {
450             scanBackward(repcnt, howlong);
451         }
452     };
453     
454     private RepeatingImageButton.RepeatListener mFfwdListener =
455         new RepeatingImageButton.RepeatListener() {
456         public void onRepeat(View v, long howlong, int repcnt) {
457             scanForward(repcnt, howlong);
458         }
459     };
460    
461     @Override
462     public void onStop() {
463         paused = true;
464         if (mService != null && mOneShot && getChangingConfigurations() == 0) {
465             try {
466                 mService.stop();
467             } catch (RemoteException ex) {
468             }
469         }
470         mHandler.removeMessages(REFRESH);
471         unregisterReceiver(mStatusListener);
472         MusicUtils.unbindFromService(this);
473         mService = null;
474         super.onStop();
475     }
476
477     @Override
478     public void onSaveInstanceState(Bundle outState) {
479         outState.putBoolean("oneshot", mOneShot);
480         super.onSaveInstanceState(outState);
481     }
482     
483     @Override
484     public void onStart() {
485         super.onStart();
486         paused = false;
487
488         if (false == MusicUtils.bindToService(this, osc)) {
489             // something went wrong
490             mHandler.sendEmptyMessage(QUIT);
491         }
492         
493         IntentFilter f = new IntentFilter();
494         f.addAction(MediaPlaybackService.PLAYSTATE_CHANGED);
495         f.addAction(MediaPlaybackService.META_CHANGED);
496         f.addAction(MediaPlaybackService.PLAYBACK_COMPLETE);
497         registerReceiver(mStatusListener, new IntentFilter(f));
498         updateTrackInfo();
499         long next = refreshNow();
500         queueNextRefresh(next);
501     }
502     
503     @Override
504     public void onNewIntent(Intent intent) {
505         setIntent(intent);
506         mOneShot = intent.getBooleanExtra("oneshot", false);
507     }
508     
509     @Override
510     public void onResume() {
511         super.onResume();
512         updateTrackInfo();
513         setPauseButtonImage();
514     }
515     
516     @Override
517     public void onDestroy()
518     {
519         mAlbumArtWorker.quit();
520         super.onDestroy();
521         //System.out.println("***************** playback activity onDestroy\n");
522     }
523
524     @Override
525     public boolean onCreateOptionsMenu(Menu menu) {
526         super.onCreateOptionsMenu(menu);
527         // Don't show the menu items if we got launched by path/filedescriptor, or
528         // if we're in one shot mode. In most cases, these menu items are not
529         // useful in those modes, so for consistency we never show them in these
530         // modes, instead of tailoring them to the specific file being played.
531         if (MusicUtils.getCurrentAudioId() >= 0 && !mOneShot) {
532             menu.add(0, GOTO_START, 0, R.string.goto_start).setIcon(R.drawable.ic_menu_music_library);
533             menu.add(0, PARTY_SHUFFLE, 0, R.string.party_shuffle); // icon will be set in onPrepareOptionsMenu()
534             SubMenu sub = menu.addSubMenu(0, ADD_TO_PLAYLIST, 0,
535                     R.string.add_to_playlist).setIcon(android.R.drawable.ic_menu_add);
536             MusicUtils.makePlaylistMenu(this, sub);
537             menu.add(0, USE_AS_RINGTONE, 0, R.string.ringtone_menu_short).setIcon(R.drawable.ic_menu_set_as_ringtone);
538             menu.add(0, DELETE_ITEM, 0, R.string.delete_item).setIcon(R.drawable.ic_menu_delete);
539             return true;
540         }
541         return false;
542     }
543
544     @Override
545     public boolean onPrepareOptionsMenu(Menu menu) {
546         MenuItem item = menu.findItem(PARTY_SHUFFLE);
547         if (item != null) {
548             int shuffle = MusicUtils.getCurrentShuffleMode();
549             if (shuffle == MediaPlaybackService.SHUFFLE_AUTO) {
550                 item.setIcon(R.drawable.ic_menu_party_shuffle);
551                 item.setTitle(R.string.party_shuffle_off);
552             } else {
553                 item.setIcon(R.drawable.ic_menu_party_shuffle);
554                 item.setTitle(R.string.party_shuffle);
555             }
556         }
557         return true;
558     }
559
560     @Override
561     public boolean onOptionsItemSelected(MenuItem item) {
562         Intent intent;
563         try {
564             switch (item.getItemId()) {
565                 case GOTO_START:
566                     intent = new Intent();
567                     intent.setClass(this, MusicBrowserActivity.class);
568                     intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
569                             | Intent.FLAG_ACTIVITY_CLEAR_TOP);
570                     startActivity(intent);
571                     break;
572                 case USE_AS_RINGTONE: {
573                     // Set the system setting to make this the current ringtone
574                     if (mService != null) {
575                         MusicUtils.setRingtone(this, mService.getAudioId());
576                     }
577                     return true;
578                 }
579                 case PARTY_SHUFFLE:
580                     if (mService != null) {
581                         int shuffle = mService.getShuffleMode();
582                         if (shuffle == MediaPlaybackService.SHUFFLE_AUTO) {
583                             mService.setShuffleMode(MediaPlaybackService.SHUFFLE_NONE);
584                         } else {
585                             mService.setShuffleMode(MediaPlaybackService.SHUFFLE_AUTO);
586                         }
587                     }
588                     setShuffleButtonImage();
589                     break;
590                     
591                 case NEW_PLAYLIST: {
592                     intent = new Intent();
593                     intent.setClass(this, CreatePlaylist.class);
594                     startActivityForResult(intent, NEW_PLAYLIST);
595                     return true;
596                 }
597
598                 case PLAYLIST_SELECTED: {
599                     long [] list = new long[1];
600                     list[0] = MusicUtils.getCurrentAudioId();
601                     long playlist = item.getIntent().getLongExtra("playlist", 0);
602                     MusicUtils.addToPlaylist(this, list, playlist);
603                     return true;
604                 }
605                 
606                 case DELETE_ITEM: {
607                     if (mService != null) {
608                         long [] list = new long[1];
609                         list[0] = MusicUtils.getCurrentAudioId();
610                         Bundle b = new Bundle();
611                         b.putString("description", getString(R.string.delete_song_desc,
612                                 mService.getTrackName()));
613                         b.putLongArray("items", list);
614                         intent = new Intent();
615                         intent.setClass(this, DeleteItems.class);
616                         intent.putExtras(b);
617                         startActivityForResult(intent, -1);
618                     }
619                     return true;
620                 }
621             }
622         } catch (RemoteException ex) {
623         }
624         return super.onOptionsItemSelected(item);
625     }
626     
627     @Override
628     protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
629         if (resultCode != RESULT_OK) {
630             return;
631         }
632         switch (requestCode) {
633             case NEW_PLAYLIST:
634                 Uri uri = intent.getData();
635                 if (uri != null) {
636                     long [] list = new long[1];
637                     list[0] = MusicUtils.getCurrentAudioId();
638                     int playlist = Integer.parseInt(uri.getLastPathSegment());
639                     MusicUtils.addToPlaylist(this, list, playlist);
640                 }
641                 break;
642         }
643     }
644     private final int keyboard[][] = {
645         {
646             KeyEvent.KEYCODE_Q,
647             KeyEvent.KEYCODE_W,
648             KeyEvent.KEYCODE_E,
649             KeyEvent.KEYCODE_R,
650             KeyEvent.KEYCODE_T,
651             KeyEvent.KEYCODE_Y,
652             KeyEvent.KEYCODE_U,
653             KeyEvent.KEYCODE_I,
654             KeyEvent.KEYCODE_O,
655             KeyEvent.KEYCODE_P,
656         },
657         {
658             KeyEvent.KEYCODE_A,
659             KeyEvent.KEYCODE_S,
660             KeyEvent.KEYCODE_D,
661             KeyEvent.KEYCODE_F,
662             KeyEvent.KEYCODE_G,
663             KeyEvent.KEYCODE_H,
664             KeyEvent.KEYCODE_J,
665             KeyEvent.KEYCODE_K,
666             KeyEvent.KEYCODE_L,
667             KeyEvent.KEYCODE_DEL,
668         },
669         {
670             KeyEvent.KEYCODE_Z,
671             KeyEvent.KEYCODE_X,
672             KeyEvent.KEYCODE_C,
673             KeyEvent.KEYCODE_V,
674             KeyEvent.KEYCODE_B,
675             KeyEvent.KEYCODE_N,
676             KeyEvent.KEYCODE_M,
677             KeyEvent.KEYCODE_COMMA,
678             KeyEvent.KEYCODE_PERIOD,
679             KeyEvent.KEYCODE_ENTER
680         }
681
682     };
683
684     private int lastX;
685     private int lastY;
686
687     private boolean seekMethod1(int keyCode)
688     {
689         for(int x=0;x<10;x++) {
690             for(int y=0;y<3;y++) {
691                 if(keyboard[y][x] == keyCode) {
692                     int dir = 0;
693                     // top row
694                     if(x == lastX && y == lastY) dir = 0;
695                     else if (y == 0 && lastY == 0 && x > lastX) dir = 1;
696                     else if (y == 0 && lastY == 0 && x < lastX) dir = -1;
697                     // bottom row
698                     else if (y == 2 && lastY == 2 && x > lastX) dir = -1;
699                     else if (y == 2 && lastY == 2 && x < lastX) dir = 1;
700                     // moving up
701                     else if (y < lastY && x <= 4) dir = 1; 
702                     else if (y < lastY && x >= 5) dir = -1; 
703                     // moving down
704                     else if (y > lastY && x <= 4) dir = -1; 
705                     else if (y > lastY && x >= 5) dir = 1; 
706                     lastX = x;
707                     lastY = y;
708                     try {
709                         mService.seek(mService.position() + dir * 5);
710                     } catch (RemoteException ex) {
711                     }
712                     refreshNow();
713                     return true;
714                 }
715             }
716         }
717         lastX = -1;
718         lastY = -1;
719         return false;
720     }
721
722     private boolean seekMethod2(int keyCode)
723     {
724         if (mService == null) return false;
725         for(int i=0;i<10;i++) {
726             if(keyboard[0][i] == keyCode) {
727                 int seekpercentage = 100*i/10;
728                 try {
729                     mService.seek(mService.duration() * seekpercentage / 100);
730                 } catch (RemoteException ex) {
731                 }
732                 refreshNow();
733                 return true;
734             }
735         }
736         return false;
737     }
738
739     @Override
740     public boolean onKeyUp(int keyCode, KeyEvent event) {
741         try {
742             switch(keyCode)
743             {
744                 case KeyEvent.KEYCODE_DPAD_LEFT:
745                     if (mDeviceHasNoDpad) {
746                         break;
747                     }
748                     if (mService != null) {
749                         if (!mSeeking && mStartSeekPos >= 0) {
750                             mPauseButton.requestFocus();
751                             if (mStartSeekPos < 1000) {
752                                 mService.prev();
753                             } else {
754                                 mService.seek(0);
755                             }
756                         } else {
757                             scanBackward(-1, event.getEventTime() - event.getDownTime());
758                             mPauseButton.requestFocus();
759                             mStartSeekPos = -1;
760                         }
761                     }
762                     mSeeking = false;
763                     mPosOverride = -1;
764                     return true;
765                 case KeyEvent.KEYCODE_DPAD_RIGHT:
766                     if (mDeviceHasNoDpad) {
767                         break;
768                     }
769                     if (mService != null) {
770                         if (!mSeeking && mStartSeekPos >= 0) {
771                             mPauseButton.requestFocus();
772                             mService.next();
773                         } else {
774                             scanForward(-1, event.getEventTime() - event.getDownTime());
775                             mPauseButton.requestFocus();
776                             mStartSeekPos = -1;
777                         }
778                     }
779                     mSeeking = false;
780                     mPosOverride = -1;
781                     return true;
782             }
783         } catch (RemoteException ex) {
784         }
785         return super.onKeyUp(keyCode, event);
786     }
787
788     @Override
789     public boolean onKeyDown(int keyCode, KeyEvent event)
790     {
791         int direction = -1;
792         int repcnt = event.getRepeatCount();
793
794         if((seekmethod==0)?seekMethod1(keyCode):seekMethod2(keyCode))
795             return true;
796
797         switch(keyCode)
798         {
799 /*
800             // image scale
801             case KeyEvent.KEYCODE_Q: av.adjustParams(-0.05, 0.0, 0.0, 0.0, 0.0,-1.0); break;
802             case KeyEvent.KEYCODE_E: av.adjustParams( 0.05, 0.0, 0.0, 0.0, 0.0, 1.0); break;
803             // image translate
804             case KeyEvent.KEYCODE_W: av.adjustParams(    0.0, 0.0,-1.0, 0.0, 0.0, 0.0); break;
805             case KeyEvent.KEYCODE_X: av.adjustParams(    0.0, 0.0, 1.0, 0.0, 0.0, 0.0); break;
806             case KeyEvent.KEYCODE_A: av.adjustParams(    0.0,-1.0, 0.0, 0.0, 0.0, 0.0); break;
807             case KeyEvent.KEYCODE_D: av.adjustParams(    0.0, 1.0, 0.0, 0.0, 0.0, 0.0); break;
808             // camera rotation
809             case KeyEvent.KEYCODE_R: av.adjustParams(    0.0, 0.0, 0.0, 0.0, 0.0,-1.0); break;
810             case KeyEvent.KEYCODE_U: av.adjustParams(    0.0, 0.0, 0.0, 0.0, 0.0, 1.0); break;
811             // camera translate
812             case KeyEvent.KEYCODE_Y: av.adjustParams(    0.0, 0.0, 0.0, 0.0,-1.0, 0.0); break;
813             case KeyEvent.KEYCODE_N: av.adjustParams(    0.0, 0.0, 0.0, 0.0, 1.0, 0.0); break;
814             case KeyEvent.KEYCODE_G: av.adjustParams(    0.0, 0.0, 0.0,-1.0, 0.0, 0.0); break;
815             case KeyEvent.KEYCODE_J: av.adjustParams(    0.0, 0.0, 0.0, 1.0, 0.0, 0.0); break;
816
817 */
818
819             case KeyEvent.KEYCODE_SLASH:
820                 seekmethod = 1 - seekmethod;
821                 return true;
822
823             case KeyEvent.KEYCODE_DPAD_LEFT:
824                 if (mDeviceHasNoDpad) {
825                     break;
826                 }
827                 if (!mPrevButton.hasFocus()) {
828                     mPrevButton.requestFocus();
829                 }
830                 scanBackward(repcnt, event.getEventTime() - event.getDownTime());
831                 return true;
832             case KeyEvent.KEYCODE_DPAD_RIGHT:
833                 if (mDeviceHasNoDpad) {
834                     break;
835                 }
836                 if (!mNextButton.hasFocus()) {
837                     mNextButton.requestFocus();
838                 }
839                 scanForward(repcnt, event.getEventTime() - event.getDownTime());
840                 return true;
841
842             case KeyEvent.KEYCODE_S:
843                 toggleShuffle();
844                 return true;
845
846             case KeyEvent.KEYCODE_DPAD_CENTER:
847             case KeyEvent.KEYCODE_SPACE:
848                 doPauseResume();
849                 return true;
850         }
851         return super.onKeyDown(keyCode, event);
852     }
853     
854     private void scanBackward(int repcnt, long delta) {
855         if(mService == null) return;
856         try {
857             if(repcnt == 0) {
858                 mStartSeekPos = mService.position();
859                 mLastSeekEventTime = 0;
860                 mSeeking = false;
861             } else {
862                 mSeeking = true;
863                 if (delta < 5000) {
864                     // seek at 10x speed for the first 5 seconds
865                     delta = delta * 10; 
866                 } else {
867                     // seek at 40x after that
868                     delta = 50000 + (delta - 5000) * 40;
869                 }
870                 long newpos = mStartSeekPos - delta;
871                 if (newpos < 0) {
872                     // move to previous track
873                     mService.prev();
874                     long duration = mService.duration();
875                     mStartSeekPos += duration;
876                     newpos += duration;
877                 }
878                 if (((delta - mLastSeekEventTime) > 250) || repcnt < 0){
879                     mService.seek(newpos);
880                     mLastSeekEventTime = delta;
881                 }
882                 if (repcnt >= 0) {
883                     mPosOverride = newpos;
884                 } else {
885                     mPosOverride = -1;
886                 }
887                 refreshNow();
888             }
889         } catch (RemoteException ex) {
890         }
891     }
892
893     private void scanForward(int repcnt, long delta) {
894         if(mService == null) return;
895         try {
896             if(repcnt == 0) {
897                 mStartSeekPos = mService.position();
898                 mLastSeekEventTime = 0;
899                 mSeeking = false;
900             } else {
901                 mSeeking = true;
902                 if (delta < 5000) {
903                     // seek at 10x speed for the first 5 seconds
904                     delta = delta * 10; 
905                 } else {
906                     // seek at 40x after that
907                     delta = 50000 + (delta - 5000) * 40;
908                 }
909                 long newpos = mStartSeekPos + delta;
910                 long duration = mService.duration();
911                 if (newpos >= duration) {
912                     // move to next track
913                     mService.next();
914                     mStartSeekPos -= duration; // is OK to go negative
915                     newpos -= duration;
916                 }
917                 if (((delta - mLastSeekEventTime) > 250) || repcnt < 0){
918                     mService.seek(newpos);
919                     mLastSeekEventTime = delta;
920                 }
921                 if (repcnt >= 0) {
922                     mPosOverride = newpos;
923                 } else {
924                     mPosOverride = -1;
925                 }
926                 refreshNow();
927             }
928         } catch (RemoteException ex) {
929         }
930     }
931     
932     private void doPauseResume() {
933         try {
934             if(mService != null) {
935                 if (mService.isPlaying()) {
936                     mService.pause();
937                 } else {
938                     mService.play();
939                 }
940                 refreshNow();
941                 setPauseButtonImage();
942             }
943         } catch (RemoteException ex) {
944         }
945     }
946     
947     private void toggleShuffle() {
948         if (mService == null) {
949             return;
950         }
951         try {
952             int shuffle = mService.getShuffleMode();
953             if (shuffle == MediaPlaybackService.SHUFFLE_NONE) {
954                 mService.setShuffleMode(MediaPlaybackService.SHUFFLE_NORMAL);
955                 if (mService.getRepeatMode() == MediaPlaybackService.REPEAT_CURRENT) {
956                     mService.setRepeatMode(MediaPlaybackService.REPEAT_ALL);
957                     setRepeatButtonImage();
958                 }
959                 showToast(R.string.shuffle_on_notif);
960             } else if (shuffle == MediaPlaybackService.SHUFFLE_NORMAL ||
961                     shuffle == MediaPlaybackService.SHUFFLE_AUTO) {
962                 mService.setShuffleMode(MediaPlaybackService.SHUFFLE_NONE);
963                 showToast(R.string.shuffle_off_notif);
964             } else {
965                 Log.e("MediaPlaybackActivity", "Invalid shuffle mode: " + shuffle);
966             }
967             setShuffleButtonImage();
968         } catch (RemoteException ex) {
969         }
970     }
971     
972     private void cycleRepeat() {
973         if (mService == null) {
974             return;
975         }
976         try {
977             int mode = mService.getRepeatMode();
978             if (mode == MediaPlaybackService.REPEAT_NONE) {
979                 mService.setRepeatMode(MediaPlaybackService.REPEAT_ALL);
980                 showToast(R.string.repeat_all_notif);
981             } else if (mode == MediaPlaybackService.REPEAT_ALL) {
982                 mService.setRepeatMode(MediaPlaybackService.REPEAT_CURRENT);
983                 if (mService.getShuffleMode() != MediaPlaybackService.SHUFFLE_NONE) {
984                     mService.setShuffleMode(MediaPlaybackService.SHUFFLE_NONE);
985                     setShuffleButtonImage();
986                 }
987                 showToast(R.string.repeat_current_notif);
988             } else {
989                 mService.setRepeatMode(MediaPlaybackService.REPEAT_NONE);
990                 showToast(R.string.repeat_off_notif);
991             }
992             setRepeatButtonImage();
993         } catch (RemoteException ex) {
994         }
995         
996     }
997     
998     private void showToast(int resid) {
999         if (mToast == null) {
1000             mToast = Toast.makeText(this, "", Toast.LENGTH_SHORT);
1001         }
1002         mToast.setText(resid);
1003         mToast.show();
1004     }
1005
1006     private void startPlayback() {
1007
1008         if(mService == null)
1009             return;
1010         Intent intent = getIntent();
1011         String filename = "";
1012         Uri uri = intent.getData();
1013         if (uri != null && uri.toString().length() > 0) {
1014             // If this is a file:// URI, just use the path directly instead
1015             // of going through the open-from-filedescriptor codepath.
1016             String scheme = uri.getScheme();
1017             if ("file".equals(scheme)) {
1018                 filename = uri.getPath();
1019             } else {
1020                 filename = uri.toString();
1021             }
1022             try {
1023                 if (! ContentResolver.SCHEME_CONTENT.equals(scheme) ||
1024                         ! MediaStore.AUTHORITY.equals(uri.getAuthority())) {
1025                     mOneShot = true;
1026                 }
1027                 mService.stop();
1028                 mService.openFile(filename, mOneShot);
1029                 mService.play();
1030                 setIntent(new Intent());
1031             } catch (Exception ex) {
1032                 Log.d("MediaPlaybackActivity", "couldn't start playback: " + ex);
1033             }
1034         }
1035
1036         updateTrackInfo();
1037         long next = refreshNow();
1038         queueNextRefresh(next);
1039     }
1040
1041     private ServiceConnection osc = new ServiceConnection() {
1042             public void onServiceConnected(ComponentName classname, IBinder obj) {
1043                 mService = IMediaPlaybackService.Stub.asInterface(obj);
1044                 startPlayback();
1045                 try {
1046                     // Assume something is playing when the service says it is,
1047                     // but also if the audio ID is valid but the service is paused.
1048                     if (mService.getAudioId() >= 0 || mService.isPlaying() ||
1049                             mService.getPath() != null) {
1050                         // something is playing now, we're done
1051                         if (mOneShot || mService.getAudioId() < 0) {
1052                             mRepeatButton.setVisibility(View.INVISIBLE);
1053                             mShuffleButton.setVisibility(View.INVISIBLE);
1054                             mQueueButton.setVisibility(View.INVISIBLE);
1055                         } else {
1056                             mRepeatButton.setVisibility(View.VISIBLE);
1057                             mShuffleButton.setVisibility(View.VISIBLE);
1058                             mQueueButton.setVisibility(View.VISIBLE);
1059                             setRepeatButtonImage();
1060                             setShuffleButtonImage();
1061                         }
1062                         setPauseButtonImage();
1063                         return;
1064                     }
1065                 } catch (RemoteException ex) {
1066                 }
1067                 // Service is dead or not playing anything. If we got here as part
1068                 // of a "play this file" Intent, exit. Otherwise go to the Music
1069                 // app start screen.
1070                 if (getIntent().getData() == null) {
1071                     Intent intent = new Intent(Intent.ACTION_MAIN);
1072                     intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1073                     intent.setClass(MediaPlaybackActivity.this, MusicBrowserActivity.class);
1074                     startActivity(intent);
1075                 }
1076                 finish();
1077             }
1078             public void onServiceDisconnected(ComponentName classname) {
1079             }
1080     };
1081
1082     private void setRepeatButtonImage() {
1083         try {
1084             switch (mService.getRepeatMode()) {
1085                 case MediaPlaybackService.REPEAT_ALL:
1086                     mRepeatButton.setImageResource(R.drawable.ic_mp_repeat_all_btn);
1087                     break;
1088                 case MediaPlaybackService.REPEAT_CURRENT:
1089                     mRepeatButton.setImageResource(R.drawable.ic_mp_repeat_once_btn);
1090                     break;
1091                 default:
1092                     mRepeatButton.setImageResource(R.drawable.ic_mp_repeat_off_btn);
1093                     break;
1094             }
1095         } catch (RemoteException ex) {
1096         }
1097     }
1098     
1099     private void setShuffleButtonImage() {
1100         try {
1101             switch (mService.getShuffleMode()) {
1102                 case MediaPlaybackService.SHUFFLE_NONE:
1103                     mShuffleButton.setImageResource(R.drawable.ic_mp_shuffle_off_btn);
1104                     break;
1105                 case MediaPlaybackService.SHUFFLE_AUTO:
1106                     mShuffleButton.setImageResource(R.drawable.ic_mp_partyshuffle_on_btn);
1107                     break;
1108                 default:
1109                     mShuffleButton.setImageResource(R.drawable.ic_mp_shuffle_on_btn);
1110                     break;
1111             }
1112         } catch (RemoteException ex) {
1113         }
1114     }
1115     
1116     private void setPauseButtonImage() {
1117         try {
1118             if (mService != null && mService.isPlaying()) {
1119                 mPauseButton.setImageResource(android.R.drawable.ic_media_pause);
1120             } else {
1121                 mPauseButton.setImageResource(android.R.drawable.ic_media_play);
1122             }
1123         } catch (RemoteException ex) {
1124         }
1125     }
1126     
1127     private ImageView mAlbum;
1128     private TextView mCurrentTime;
1129     private TextView mTotalTime;
1130     private TextView mArtistName;
1131     private TextView mAlbumName;
1132     private TextView mTrackName;
1133     private ProgressBar mProgress;
1134     private long mPosOverride = -1;
1135     private boolean mFromTouch = false;
1136     private long mDuration;
1137     private int seekmethod;
1138     private boolean paused;
1139
1140     private static final int REFRESH = 1;
1141     private static final int QUIT = 2;
1142     private static final int GET_ALBUM_ART = 3;
1143     private static final int ALBUM_ART_DECODED = 4;
1144
1145     private void queueNextRefresh(long delay) {
1146         if (!paused) {
1147             Message msg = mHandler.obtainMessage(REFRESH);
1148             mHandler.removeMessages(REFRESH);
1149             mHandler.sendMessageDelayed(msg, delay);
1150         }
1151     }
1152
1153     private long refreshNow() {
1154         if(mService == null)
1155             return 500;
1156         try {
1157             long pos = mPosOverride < 0 ? mService.position() : mPosOverride;
1158             long remaining = 1000 - (pos % 1000);
1159             if ((pos >= 0) && (mDuration > 0)) {
1160                 mCurrentTime.setText(MusicUtils.makeTimeString(this, pos / 1000));
1161                 
1162                 if (mService.isPlaying()) {
1163                     mCurrentTime.setVisibility(View.VISIBLE);
1164                 } else {
1165                     // blink the counter
1166                     int vis = mCurrentTime.getVisibility();
1167                     mCurrentTime.setVisibility(vis == View.INVISIBLE ? View.VISIBLE : View.INVISIBLE);
1168                     remaining = 500;
1169                 }
1170
1171                 mProgress.setProgress((int) (1000 * pos / mDuration));
1172             } else {
1173                 mCurrentTime.setText("--:--");
1174                 mProgress.setProgress(1000);
1175             }
1176             // return the number of milliseconds until the next full second, so
1177             // the counter can be updated at just the right time
1178             return remaining;
1179         } catch (RemoteException ex) {
1180         }
1181         return 500;
1182     }
1183     
1184     private final Handler mHandler = new Handler() {
1185         @Override
1186         public void handleMessage(Message msg) {
1187             switch (msg.what) {
1188                 case ALBUM_ART_DECODED:
1189                     mAlbum.setImageBitmap((Bitmap)msg.obj);
1190                     mAlbum.getDrawable().setDither(true);
1191                     break;
1192
1193                 case REFRESH:
1194                     long next = refreshNow();
1195                     queueNextRefresh(next);
1196                     break;
1197                     
1198                 case QUIT:
1199                     // This can be moved back to onCreate once the bug that prevents
1200                     // Dialogs from being started from onCreate/onResume is fixed.
1201                     new AlertDialog.Builder(MediaPlaybackActivity.this)
1202                             .setTitle(R.string.service_start_error_title)
1203                             .setMessage(R.string.service_start_error_msg)
1204                             .setPositiveButton(R.string.service_start_error_button,
1205                                     new DialogInterface.OnClickListener() {
1206                                         public void onClick(DialogInterface dialog, int whichButton) {
1207                                             finish();
1208                                         }
1209                                     })
1210                             .setCancelable(false)
1211                             .show();
1212                     break;
1213
1214                 default:
1215                     break;
1216             }
1217         }
1218     };
1219
1220     private BroadcastReceiver mStatusListener = new BroadcastReceiver() {
1221         @Override
1222         public void onReceive(Context context, Intent intent) {
1223             String action = intent.getAction();
1224             if (action.equals(MediaPlaybackService.META_CHANGED)) {
1225                 // redraw the artist/title info and
1226                 // set new max for progress bar
1227                 updateTrackInfo();
1228                 setPauseButtonImage();
1229                 queueNextRefresh(1);
1230             } else if (action.equals(MediaPlaybackService.PLAYBACK_COMPLETE)) {
1231                 if (mOneShot) {
1232                     finish();
1233                 } else {
1234                     setPauseButtonImage();
1235                 }
1236             } else if (action.equals(MediaPlaybackService.PLAYSTATE_CHANGED)) {
1237                 setPauseButtonImage();
1238             }
1239         }
1240     };
1241
1242     private static class AlbumSongIdWrapper {
1243         public long albumid;
1244         public long songid;
1245         AlbumSongIdWrapper(long aid, long sid) {
1246             albumid = aid;
1247             songid = sid;
1248         }
1249     }
1250     
1251     private void updateTrackInfo() {
1252         if (mService == null) {
1253             return;
1254         }
1255         try {
1256             String path = mService.getPath();
1257             if (path == null) {
1258                 finish();
1259                 return;
1260             }
1261             
1262             long songid = mService.getAudioId(); 
1263             if (songid < 0 && path.toLowerCase().startsWith("http://")) {
1264                 // Once we can get album art and meta data from MediaPlayer, we
1265                 // can show that info again when streaming.
1266                 ((View) mArtistName.getParent()).setVisibility(View.INVISIBLE);
1267                 ((View) mAlbumName.getParent()).setVisibility(View.INVISIBLE);
1268                 mAlbum.setVisibility(View.GONE);
1269                 mTrackName.setText(path);
1270                 mAlbumArtHandler.removeMessages(GET_ALBUM_ART);
1271                 mAlbumArtHandler.obtainMessage(GET_ALBUM_ART, new AlbumSongIdWrapper(-1, -1)).sendToTarget();
1272             } else {
1273                 ((View) mArtistName.getParent()).setVisibility(View.VISIBLE);
1274                 ((View) mAlbumName.getParent()).setVisibility(View.VISIBLE);
1275                 String artistName = mService.getArtistName();
1276                 if (MediaFile.UNKNOWN_STRING.equals(artistName)) {
1277                     artistName = getString(R.string.unknown_artist_name);
1278                 }
1279                 mArtistName.setText(artistName);
1280                 String albumName = mService.getAlbumName();
1281                 long albumid = mService.getAlbumId();
1282                 if (MediaFile.UNKNOWN_STRING.equals(albumName)) {
1283                     albumName = getString(R.string.unknown_album_name);
1284                     albumid = -1;
1285                 }
1286                 mAlbumName.setText(albumName);
1287                 mTrackName.setText(mService.getTrackName());
1288                 mAlbumArtHandler.removeMessages(GET_ALBUM_ART);
1289                 mAlbumArtHandler.obtainMessage(GET_ALBUM_ART, new AlbumSongIdWrapper(albumid, songid)).sendToTarget();
1290                 mAlbum.setVisibility(View.VISIBLE);
1291             }
1292             mDuration = mService.duration();
1293             mTotalTime.setText(MusicUtils.makeTimeString(this, mDuration / 1000));
1294         } catch (RemoteException ex) {
1295             finish();
1296         }
1297     }
1298     
1299     public class AlbumArtHandler extends Handler {
1300         private long mAlbumId = -1;
1301         
1302         public AlbumArtHandler(Looper looper) {
1303             super(looper);
1304         }
1305         @Override
1306         public void handleMessage(Message msg)
1307         {
1308             long albumid = ((AlbumSongIdWrapper) msg.obj).albumid;
1309             long songid = ((AlbumSongIdWrapper) msg.obj).songid;
1310             if (msg.what == GET_ALBUM_ART && (mAlbumId != albumid || albumid < 0)) {
1311                 // while decoding the new image, show the default album art
1312                 Message numsg = mHandler.obtainMessage(ALBUM_ART_DECODED, null);
1313                 mHandler.removeMessages(ALBUM_ART_DECODED);
1314                 mHandler.sendMessageDelayed(numsg, 300);
1315                 Bitmap bm = MusicUtils.getArtwork(MediaPlaybackActivity.this, songid, albumid);
1316                 if (bm == null) {
1317                     bm = MusicUtils.getArtwork(MediaPlaybackActivity.this, songid, -1);
1318                     albumid = -1;
1319                 }
1320                 if (bm != null) {
1321                     numsg = mHandler.obtainMessage(ALBUM_ART_DECODED, bm);
1322                     mHandler.removeMessages(ALBUM_ART_DECODED);
1323                     mHandler.sendMessage(numsg);
1324                 }
1325                 mAlbumId = albumid;
1326             }
1327         }
1328     }
1329     
1330     private static class Worker implements Runnable {
1331         private final Object mLock = new Object();
1332         private Looper mLooper;
1333         
1334         /**
1335          * Creates a worker thread with the given name. The thread
1336          * then runs a {@link android.os.Looper}.
1337          * @param name A name for the new thread
1338          */
1339         Worker(String name) {
1340             Thread t = new Thread(null, this, name);
1341             t.setPriority(Thread.MIN_PRIORITY);
1342             t.start();
1343             synchronized (mLock) {
1344                 while (mLooper == null) {
1345                     try {
1346                         mLock.wait();
1347                     } catch (InterruptedException ex) {
1348                     }
1349                 }
1350             }
1351         }
1352         
1353         public Looper getLooper() {
1354             return mLooper;
1355         }
1356         
1357         public void run() {
1358             synchronized (mLock) {
1359                 Looper.prepare();
1360                 mLooper = Looper.myLooper();
1361                 mLock.notifyAll();
1362             }
1363             Looper.loop();
1364         }
1365         
1366         public void quit() {
1367             mLooper.quit();
1368         }
1369     }
1370 }
1371