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


Java MediaIntentReceiver类代码示例

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


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

示例1: getCastOptions

import com.google.android.gms.cast.framework.media.MediaIntentReceiver; //导入依赖的package包/类
@Override
public CastOptions getCastOptions(Context appContext) {

    List<String> buttonActions = new ArrayList<>();
    buttonActions.add(MediaIntentReceiver.ACTION_TOGGLE_PLAYBACK);
    buttonActions.add(MediaIntentReceiver.ACTION_STOP_CASTING);
    // Showing "play/pause" and "stop casting" in the compat view of the notification.
    int[] compatButtonActionsIndices = new int[]{ 0, 1 };
    // Builds a notification with the above actions.
    // Tapping on the notification opens an Activity with class VideoBrowserActivity.
    NotificationOptions notificationOptions = new NotificationOptions.Builder()
            .setActions(buttonActions, compatButtonActionsIndices)
            .setTargetActivityClassName(MainActivity.class.getName())
            .build();

    CastMediaOptions mediaOptions = new CastMediaOptions.Builder()
            .setNotificationOptions(notificationOptions)
            .build();

    CastOptions castOptions = new CastOptions.Builder()
            .setReceiverApplicationId(CastMediaControlIntent.DEFAULT_MEDIA_RECEIVER_APPLICATION_ID)
            .setCastMediaOptions(mediaOptions)
            .build();
    return castOptions;
}
 
开发者ID:aschober,项目名称:vinyl-cast,代码行数:26,代码来源:CastOptionsProvider.java

示例2: getCastOptions

import com.google.android.gms.cast.framework.media.MediaIntentReceiver; //导入依赖的package包/类
@Override
public CastOptions getCastOptions(Context context) {
    List<String> buttonActions = new ArrayList<>();
    buttonActions.add(MediaIntentReceiver.ACTION_SKIP_PREV);
    buttonActions.add(MediaIntentReceiver.ACTION_TOGGLE_PLAYBACK);
    buttonActions.add(MediaIntentReceiver.ACTION_SKIP_NEXT);
    buttonActions.add(MediaIntentReceiver.ACTION_STOP_CASTING);
    // Showing "play/pause" and "stop casting" in the compat view of the notification.
    int[] compatButtonActionsIndicies = new int[]{ 1, 3 };
    NotificationOptions notificationOptions = new NotificationOptions.Builder()
            .setActions(buttonActions, compatButtonActionsIndicies)
            .setTargetActivityClassName(MainActivity.class.getName())
            .build();
    CastMediaOptions mediaOptions = new CastMediaOptions.Builder()
            .setNotificationOptions(notificationOptions)
            .setExpandedControllerActivityClassName(ExpandedControlsActivity.class.getName())
            .build();
    return new CastOptions.Builder()
            .setCastMediaOptions(mediaOptions)
            .setReceiverApplicationId(context.getString(R.string.cast_app_id))
            .build();
}
 
开发者ID:stephenmcgruer,项目名称:simple-upnp,代码行数:23,代码来源:CastOptionsProvider.java

示例3: getCastOptions

import com.google.android.gms.cast.framework.media.MediaIntentReceiver; //导入依赖的package包/类
@Override
public CastOptions getCastOptions(Context context) {
    NotificationOptions notificationOptions = new NotificationOptions.Builder()
            .setActions(Arrays.asList(MediaIntentReceiver.ACTION_SKIP_NEXT,
                    MediaIntentReceiver.ACTION_TOGGLE_PLAYBACK,
                    MediaIntentReceiver.ACTION_STOP_CASTING), new int[]{1, 2})
            .setTargetActivityClassName(ExpandedControlsActivity.class.getName())
            .build();
    CastMediaOptions mediaOptions = new CastMediaOptions.Builder()
            .setImagePicker(new ImagePickerImpl())
            .setNotificationOptions(notificationOptions)
            .setExpandedControllerActivityClassName(ExpandedControlsActivity.class.getName())
            .build();
    return new CastOptions.Builder()
            .setReceiverApplicationId(context.getString(R.string.app_id))
            .setCastMediaOptions(mediaOptions)
            .build();
}
 
开发者ID:nordfalk,项目名称:EsperantoRadio,代码行数:19,代码来源:CastOptionsProvider.java

示例4: getCastOptions

import com.google.android.gms.cast.framework.media.MediaIntentReceiver; //导入依赖的package包/类
@Override
public CastOptions getCastOptions(Context context) {
    NotificationOptions notificationOptions =
            new NotificationOptions.Builder()
                    .setActions(Arrays.asList(
                            MediaIntentReceiver.ACTION_TOGGLE_PLAYBACK,
                            MediaIntentReceiver.ACTION_STOP_CASTING), new int[]{0, 1})
                    .setTargetActivityClassName(CastExpandedControllerActivity.class.getName())
                    .build();
    CastMediaOptions mediaOptions = new CastMediaOptions.Builder()
            .setNotificationOptions(notificationOptions)
            .setExpandedControllerActivityClassName(CastExpandedControllerActivity.class.getName())
            .build();
    return new CastOptions.Builder()
            .setReceiverApplicationId(Constants.CAST_APP_ID)
            .setCastMediaOptions(mediaOptions)
            .build();
}
 
开发者ID:konir,项目名称:RadioRecPlus,代码行数:19,代码来源:CastOptionsProvider.java

示例5: getCastOptions

import com.google.android.gms.cast.framework.media.MediaIntentReceiver; //导入依赖的package包/类
@Override
public CastOptions getCastOptions(Context context) {
    List<String> supportedNamespaces = new ArrayList<>();
    supportedNamespaces.add(CUSTOM_NAMESPACE);

    NotificationOptions notificationOptions = new NotificationOptions.Builder()
            .setActions(Arrays.asList(MediaIntentReceiver.ACTION_SKIP_NEXT,
                    MediaIntentReceiver.ACTION_TOGGLE_PLAYBACK,
                    MediaIntentReceiver.ACTION_STOP_CASTING), new int[]{1, 2})
            .setTargetActivityClassName(ExpandedControlsActivity.class.getName())
            .build();

    CastMediaOptions mediaOptions = new CastMediaOptions.Builder()
             .setImagePicker(new ImagePickerImpl())
            .setNotificationOptions(notificationOptions)
            .setExpandedControllerActivityClassName(ExpandedControlsActivity.class.getName())
            .build();

    return new CastOptions.Builder()
            .setReceiverApplicationId(context.getString(R.string.app_id))
            //.setSupportedNamespaces(supportedNamespaces)
            .setCastMediaOptions(mediaOptions)
            .build();
}
 
开发者ID:kaltura,项目名称:player-sdk-native-android,代码行数:25,代码来源:CastOptionsProvider.java

示例6: createButtonActions

import com.google.android.gms.cast.framework.media.MediaIntentReceiver; //导入依赖的package包/类
private List<String> createButtonActions() {
    return Arrays.asList(MediaIntentReceiver.ACTION_REWIND,
            MediaIntentReceiver.ACTION_TOGGLE_PLAYBACK,
            MediaIntentReceiver.ACTION_FORWARD,
            MediaIntentReceiver.ACTION_STOP_CASTING);
}
 
开发者ID:DroidsOnRoids,项目名称:Casty,代码行数:7,代码来源:CastOptionsProvider.java


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