Increase the double-tap time for the widget

This really just needs to be a long press... but I don't think there is any way
to accomplish this inside a RemoteView
This commit is contained in:
Christopher Eby 2010-03-21 17:31:49 -05:00
parent 0542c93faf
commit f19927e97e

View File

@ -149,7 +149,7 @@ public class PlaybackService extends Service implements Runnable, MediaPlayer.On
launcher.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(launcher);
} else {
mHandler.sendMessageDelayed(mHandler.obtainMessage(GO, delta, 0), 250);
mHandler.sendMessageDelayed(mHandler.obtainMessage(GO, delta, 0), 400);
}
}