当前位置: 首页>>代码示例>>Java>>正文


Java CastException类代码示例

本文整理汇总了Java中com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException的典型用法代码示例。如果您正苦于以下问题:Java CastException类的具体用法?Java CastException怎么用?Java CastException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


CastException类属于com.google.android.libraries.cast.companionlibrary.cast.exceptions包,在下文中一共展示了CastException类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: togglePlayback

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
/**
 * Toggles the playback of the movie.
 *
 * @throws CastException
 * @throws NoConnectionException
 * @throws TransientNetworkDisconnectionException
 */
public void togglePlayback() throws CastException, TransientNetworkDisconnectionException,
        NoConnectionException {
    checkConnectivity();
    boolean isPlaying = isRemoteMediaPlaying();
    if (isPlaying) {
        pause();
    } else {
        if (mState == MediaStatus.PLAYER_STATE_IDLE
                && mIdleReason == MediaStatus.IDLE_REASON_FINISHED) {
            loadMedia(getRemoteMediaInformation(), true, 0);
        } else {
            play();
        }
    }
}
 
开发者ID:SebastianRask,项目名称:Pocket-Plays-for-Twitch,代码行数:23,代码来源:VideoCastManager.java

示例2: changeVolume

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
private boolean changeVolume(double volumeIncrement, boolean isKeyDown) {
    if ((Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
            && getPlaybackStatus() == MediaStatus.PLAYER_STATE_PLAYING
            && isFeatureEnabled(CastConfiguration.FEATURE_LOCKSCREEN)) {
        return false;
    }

    if (isKeyDown) {
        try {
            adjustVolume(volumeIncrement);
        } catch (CastException | TransientNetworkDisconnectionException |
                NoConnectionException e) {
            LOGE(TAG, "Failed to change volume", e);
        }
    }
    return true;
}
 
开发者ID:SebastianRask,项目名称:Pocket-Plays-for-Twitch,代码行数:18,代码来源:VideoCastManager.java

示例3: stop

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
@Override
public void stop(boolean notifyListeners) {
    if (mMediaMetadata != null)
        mMediaMetadata.setTimingSeeked(false);
    try {
        VideoCastManager.getInstance().stop();
    } catch (IllegalStateException | CastException | TransientNetworkDisconnectionException | NoConnectionException e) {
        LOG.e("Error stopping", e);
    }
    if (notifyListeners)
        VideoCastManager.getInstance().removeVideoCastConsumer(mCastConsumer);
    mState = PlaybackStateCompat.STATE_STOPPED;
    if (notifyListeners && mCallback != null) {
        mCallback.onPlaybackStatusChanged(mState);
    }
}
 
开发者ID:lifechurch,项目名称:nuclei-android,代码行数:17,代码来源:CastPlayback.java

示例4: pause

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
@Override
public void pause() {
    try {
        VideoCastManager manager = VideoCastManager.getInstance();
        if (manager.isRemoteMediaLoaded()) {
            manager.pause();
            mCurrentPosition = (int) manager.getCurrentMediaPosition();
        } else {
            loadMedia(mMediaMetadata, false);
        }
    } catch (JSONException | CastException | TransientNetworkDisconnectionException | NoConnectionException | IllegalArgumentException e) {
        if (mCallback != null) {
            mCallback.onError(e, false);
        }
    }
}
 
开发者ID:lifechurch,项目名称:nuclei-android,代码行数:17,代码来源:CastPlayback.java

示例5: pause

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
@Override
public void pause() {
    try {
        if (mCastManager.isRemoteMediaLoaded()) {
            mCastManager.pause();
            mCurrentPosition = (int) mCastManager.getCurrentMediaPosition();
        } else {
            loadMedia(mCurrentMediaId, false);
        }
    } catch (JSONException | CastException | TransientNetworkDisconnectionException
            | NoConnectionException | IllegalArgumentException e) {
        LogHelper.e(TAG, e, "Exception pausing cast playback");
        if (mCallback != null) {
            mCallback.onError(e.getMessage());
        }
    }
}
 
开发者ID:mrinalgit-dev,项目名称:MrinalMusicPlayer,代码行数:18,代码来源:CastPlayback.java

示例6: pause

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
@Override
public void pause() {
    try {
        if (mCastManager.isRemoteMediaLoaded()) {
            mCastManager.pause();
            mCurrentPosition = (int) mCastManager.getCurrentMediaPosition();
        } else {
            loadMedia(mCurrentMediaId, false);
        }
    } catch (JSONException | CastException | TransientNetworkDisconnectionException
            | NoConnectionException e) {
        LogHelper.e(TAG, e, "Exception pausing cast playback");
        if (mCallback != null) {
            mCallback.onError(e.getMessage());
        }
    }
}
 
开发者ID:SoumyaParida,项目名称:MyGaana-Universal,代码行数:18,代码来源:CastPlayback.java

示例7: onPlayPauseClicked

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
@Override
public void onPlayPauseClicked(View v) throws CastException, TransientNetworkDisconnectionException, NoConnectionException {
    if(mCastManager.isConnected()&&mOnMiniControllerChangedListener!=null)
        mOnMiniControllerChangedListener.onPlayPauseClicked(v);
    else if(mIsRemoteDisplayConnected){
        if (Player.sPlayer.isPlaying())
            Player.sPlayer.pause();
        else
            Player.sPlayer.start();
        refreshCastListeners();
    }

}
 
开发者ID:archos-sa,项目名称:aos-Video,代码行数:14,代码来源:ArchosVideoCastManager.java

示例8: pause

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
public void pause() throws CastException, TransientNetworkDisconnectionException, NoConnectionException {
    if(Player.sPlayer!=null) {
        Player.sPlayer.pause();
    }else if (mCastManager.isConnected()){
        mCastManager.pause();
    }
    refreshCastListeners();
}
 
开发者ID:archos-sa,项目名称:aos-Video,代码行数:9,代码来源:ArchosVideoCastManager.java

示例9: play

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
public void play() throws CastException, TransientNetworkDisconnectionException, NoConnectionException {
    if(Player.sPlayer!=null){
        Player.sPlayer.start();
    }
    else if (mCastManager.isConnected()){
        mCastManager.play();
    }
}
 
开发者ID:archos-sa,项目名称:aos-Video,代码行数:9,代码来源:ArchosVideoCastManager.java

示例10: togglePlayback

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
private void togglePlayback() throws CastException, TransientNetworkDisconnectionException,
        NoConnectionException {
    switch (mPlaybackState) {
        case MediaStatus.PLAYER_STATE_PAUSED:
            mCastManager.play();
            //mPlaybackState = MediaStatus.PLAYER_STATE_BUFFERING;
            restartTrickplayTimer();
            break;
        case MediaStatus.PLAYER_STATE_PLAYING:
            mCastManager.pause();
            //mPlaybackState = MediaStatus.PLAYER_STATE_BUFFERING;
            break;
        case MediaStatus.PLAYER_STATE_IDLE:
            if ((mSelectedMedia.getStreamType() == MediaInfo.STREAM_TYPE_LIVE)
                    && (mCastManager.getIdleReason() == MediaStatus.IDLE_REASON_CANCELED)) {
                mCastManager.play();
            } else {
                mCastManager.loadMedia(mSelectedMedia, true, 0);
            }
            //mPlaybackState = MediaStatus.PLAYER_STATE_BUFFERING;
            restartTrickplayTimer();
            break;
        default:
            break;
    }
    mCastController.setPlaybackStatus(mPlaybackState);
}
 
开发者ID:archos-sa,项目名称:aos-Video,代码行数:28,代码来源:VideoCastControllerFragment.java

示例11: onPlayPauseClicked

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
@Override
public void onPlayPauseClicked(View v) throws CastException,
        TransientNetworkDisconnectionException, NoConnectionException {
    checkConnectivity();
    if (mState == MediaStatus.PLAYER_STATE_PLAYING) {
        pause();
    } else {
        boolean isLive = isRemoteStreamLive();
        if ((mState == MediaStatus.PLAYER_STATE_PAUSED && !isLive)
                || (mState == MediaStatus.PLAYER_STATE_IDLE && isLive)) {
            play();
        }
    }
}
 
开发者ID:SebastianRask,项目名称:Pocket-Plays-for-Twitch,代码行数:15,代码来源:VideoCastManager.java

示例12: setVolume

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
/**
 * Sets the volume. It internally determines if this should be done for <code>stream</code> or
 * <code>device</code> volume.
 *
 * @param volume Should be a value between 0 and 1, inclusive.
 * @throws NoConnectionException
 * @throws TransientNetworkDisconnectionException
 * @throws CastException If setting system volume fails
 *
 * @see {link #setVolumeType()}
 */
public void setVolume(double volume) throws CastException,
        TransientNetworkDisconnectionException, NoConnectionException {
    checkConnectivity();
    if (volume > 1.0) {
        volume = 1.0;
    } else if (volume < 0) {
        volume = 0.0;
    }
    if (mVolumeType == VolumeType.STREAM) {
        checkRemoteMediaPlayerAvailable();
        mRemoteMediaPlayer.setStreamVolume(mApiClient, volume).setResultCallback(
                new ResultCallback<RemoteMediaPlayer.MediaChannelResult>() {

                    @Override
                    public void onResult(MediaChannelResult result) {
                        if (!result.getStatus().isSuccess()) {
                            onFailed(R.string.ccl_failed_setting_volume,
                                    result.getStatus().getStatusCode());
                        }
                    }
                }
        );
    } else {
        setDeviceVolume(volume);
    }
}
 
开发者ID:SebastianRask,项目名称:Pocket-Plays-for-Twitch,代码行数:38,代码来源:VideoCastManager.java

示例13: adjustVolume

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
/**
 * Increments (or decrements) the volume by the given amount. It internally determines if this
 * should be done for stream or device volume.
 *
 * @throws NoConnectionException If no connectivity to the device exists
 * @throws TransientNetworkDisconnectionException If framework is still trying to recover from
 * a possibly transient loss of network
 * @throws CastException
 */
public void adjustVolume(double delta) throws CastException,
        TransientNetworkDisconnectionException, NoConnectionException {
    checkConnectivity();
    double vol = getVolume() + delta;
    if (vol > 1) {
        vol = 1;
    } else if (vol < 0) {
        vol = 0;
    }
    setVolume(vol);
}
 
开发者ID:SebastianRask,项目名称:Pocket-Plays-for-Twitch,代码行数:21,代码来源:VideoCastManager.java

示例14: setMute

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
/**
 * Mutes or un-mutes the volume. It internally determines if this should be done for
 * <code>stream</code> or <code>device</code> volume.
 *
 * @throws CastException
 * @throws NoConnectionException
 * @throws TransientNetworkDisconnectionException
 */
public void setMute(boolean mute) throws CastException, TransientNetworkDisconnectionException,
        NoConnectionException {
    checkConnectivity();
    if (mVolumeType == VolumeType.STREAM) {
        checkRemoteMediaPlayerAvailable();
        mRemoteMediaPlayer.setStreamMute(mApiClient, mute);
    } else {
        setDeviceMute(mute);
    }
}
 
开发者ID:SebastianRask,项目名称:Pocket-Plays-for-Twitch,代码行数:19,代码来源:VideoCastManager.java

示例15: togglePlayback

import com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException; //导入依赖的package包/类
private void togglePlayback() throws CastException, TransientNetworkDisconnectionException,
        NoConnectionException {
    switch (mPlaybackState) {
        case MediaStatus.PLAYER_STATE_PAUSED:
            mCastManager.play();
            mPlaybackState = MediaStatus.PLAYER_STATE_BUFFERING;
            restartTrickplayTimer();
            break;
        case MediaStatus.PLAYER_STATE_PLAYING:
            mCastManager.pause();
            mPlaybackState = MediaStatus.PLAYER_STATE_BUFFERING;
            break;
        case MediaStatus.PLAYER_STATE_IDLE:
            if ((mSelectedMedia.getStreamType() == MediaInfo.STREAM_TYPE_LIVE)
                    && (mCastManager.getIdleReason() == MediaStatus.IDLE_REASON_CANCELED)) {
                mCastManager.play();
            } else {
                mCastManager.loadMedia(mSelectedMedia, true, 0);
            }
            mPlaybackState = MediaStatus.PLAYER_STATE_BUFFERING;
            restartTrickplayTimer();
            break;
        default:
            break;
    }
    mCastController.setPlaybackStatus(mPlaybackState);
}
 
开发者ID:SebastianRask,项目名称:Pocket-Plays-for-Twitch,代码行数:28,代码来源:VideoCastControllerFragment.java


注:本文中的com.google.android.libraries.cast.companionlibrary.cast.exceptions.CastException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。