1 /* //device/samples/SampleCode/src/com/android/samples/app/RemoteServiceInterface.java 2 ** 3 ** Copyright 2007, The Android Open Source Project 4 ** 5 ** Licensed under the Apache License, Version 2.0 (the "License"); 6 ** you may not use this file except in compliance with the License. 7 ** You may obtain a copy of the License at 8 ** 9 ** http://www.apache.org/licenses/LICENSE-2.0 10 ** 11 ** Unless required by applicable law or agreed to in writing, software 12 ** distributed under the License is distributed on an "AS IS" BASIS, 13 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ** See the License for the specific language governing permissions and 15 ** limitations under the License. 16 */ 17 18 package com.android.music; 19 20 import android.graphics.Bitmap; 21 22 interface IMediaPlaybackService 23 { openFile(String path, boolean oneShot)24 void openFile(String path, boolean oneShot); openFileAsync(String path)25 void openFileAsync(String path); open(in long [] list, int position)26 void open(in long [] list, int position); getQueuePosition()27 int getQueuePosition(); isPlaying()28 boolean isPlaying(); stop()29 void stop(); pause()30 void pause(); play()31 void play(); prev()32 void prev(); next()33 void next(); duration()34 long duration(); position()35 long position(); seek(long pos)36 long seek(long pos); getTrackName()37 String getTrackName(); getAlbumName()38 String getAlbumName(); getAlbumId()39 long getAlbumId(); getArtistName()40 String getArtistName(); getArtistId()41 long getArtistId(); enqueue(in long [] list, int action)42 void enqueue(in long [] list, int action); getQueue()43 long [] getQueue(); moveQueueItem(int from, int to)44 void moveQueueItem(int from, int to); setQueuePosition(int index)45 void setQueuePosition(int index); getPath()46 String getPath(); getAudioId()47 long getAudioId(); setShuffleMode(int shufflemode)48 void setShuffleMode(int shufflemode); getShuffleMode()49 int getShuffleMode(); removeTracks(int first, int last)50 int removeTracks(int first, int last); removeTrack(long id)51 int removeTrack(long id); setRepeatMode(int repeatmode)52 void setRepeatMode(int repeatmode); getRepeatMode()53 int getRepeatMode(); getMediaMountedCount()54 int getMediaMountedCount(); 55 } 56 57