blob: 5698cc5babc1eea07b62ec51cd533c2aa8fefdb8 [file] [log] [blame]
/* //device/samples/SampleCode/src/com/android/samples/app/RemoteServiceInterface.java
**
** Copyright 2007, 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.music;
import android.graphics.Bitmap;
interface IMediaPlaybackService
{
void openfile(String path);
void openfileAsync(String path);
void open(in int [] list, int position);
int getQueuePosition();
boolean isPlaying();
void stop();
void pause();
void play();
void prev();
void next();
long duration();
long position();
long seek(long pos);
String getTrackName();
String getAlbumName();
int getAlbumId();
String getArtistName();
int getArtistId();
void enqueue(in int [] list, int action);
int [] getQueue();
void moveQueueItem(int from, int to);
void setQueuePosition(int index);
String getPath();
int getAudioId();
void setShuffleMode(int shufflemode);
int getShuffleMode();
int removeTracks(int first, int last);
int removeTrack(int id);
void setRepeatMode(int repeatmode);
int getRepeatMode();
int getMediaMountedCount();
}