Back to project page Boxee-Thumb-Remote.
The source code is released under:
Apache License
If you think the Android project Boxee-Thumb-Remote listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.evendanan.android.thumbremote; /*from w ww . ja va 2s . c o m*/ import android.graphics.Bitmap; public interface ServerState { String getMediaFilename(); String getMediaType(); String getMediaTitle(); String getShowTitle(); String getShowSeason(); String getShowEpisode(); String getMediaPlot(); String getMediaTotalTime(); String getMediaCurrentTime(); int getMediaProgressPercent(); Bitmap getMediaPoster(); boolean isMediaActive(); boolean isMediaPlaying(); boolean isKeyboardActive(); //String getKeyboardText(); }