Home | History | Annotate | Download | only in deskclock

Lines Matching full:play

30  *     {@link MediaPlayer}. android.permission.READ_EXTERNAL_STORAGE is required to play custom
36 * to play custom ringtones located on the SD card using this mechanism. {@link Ringtone} allows
68 public void play(Uri ringtoneUri) {
69 LogUtils.d(TAG, "Posting play.");
113 getPlaybackDelegate().play(mContext, ringtoneUri);
133 * @return Uri of the ringtone to play when the user is in a telephone call
141 * @return Uri of the ringtone to play when the chosen ringtone fails to play
149 * @return the platform-specific playback delegate to use to play the ringtone
172 void play(Context context, Uri ringtoneUri);
191 public void play(final Context context, Uri ringtoneUri) {
196 LogUtils.i(TAG, "Play ringtone via android.media.MediaPlayer.");
244 // At this point we just don't play anything.
245 LogUtils.e("Failed to play fallback ringtone", t2);
254 // do not play alarms if stream volume is 0 (typically because ringer mode is silent).
328 public void play(Context context, Uri ringtoneUri) {
333 LogUtils.i(TAG, "Play ringtone via android.media.Ringtone.");
389 mRingtone.play();