Copyright (c) 2011 Shane Quigley
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Soft...
If you think the Android project Jupiter-Broadcasting-Holo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2014 Google Inc. All Rights Reserved.
*//fromwww.java2s.com
* 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.google.sample.castcompanionlibrary.cast.player;
import android.graphics.Bitmap;
import com.google.android.gms.cast.MediaInfo;
import com.google.android.gms.cast.MediaStatus;
import com.google.sample.castcompanionlibrary.widgets.MiniController.OnMiniControllerChangedListener;
publicinterface IVideoCastController {
/**
* Sets the bitmap for the album art
*
* @param bitmap
*/publicvoid setImage(Bitmap bitmap);
/**
* Sets the title
*
* @param text
*/publicvoid setLine1(String text);
/**
* Sets the subtitle
*
* @param text
*/publicvoid setLine2(String text);
/**
* Sets the playback state, and the idleReason (this is only reliable when the state is idle).
* Values that can be passed to this method are from {@link MediaStatus}
*
* @param state
* @param idleReason
*/publicvoid setPlaybackStatus(int state);
/**
* Assigns a {@link OnMiniControllerChangedListener} listener to be notified of the changes in
* the mini controller
*
* @param listener
*/publicvoid setOnVideoCastControllerChangedListener(OnVideoCastControllerListener listener);
/**
* Sets the type of stream. <code>streamType</code> can be {@link MediaInfo.STREAM_TYPE_LIVE} or
* {@link MediaInfo.STREAM_TYPE_BUFFERED}
*
* @param streamType
*/publicvoid setStreamType(int streamType);
publicvoid updateSeekbar(int position, int duration);
publicvoid updateControllersStatus(boolean enabled);
publicvoid showLoading(boolean visible);
publicvoid closeActivity();
publicvoid adjustControllersForLiveStream(boolean isLive);
}