android媒体在二级设备上呈现和播放

2024-04-23 01:08

本文主要是介绍android媒体在二级设备上呈现和播放,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

public class PresentationWithMediaRouterActivity extends Activity {private final String TAG = "PresentationWithMediaRouterActivity";// MediaRouter用于和MediaRouterService交互一起管理多媒体的播放行为,并维护当前已经配对上的remote// display设备,包括Wifi diplay、蓝牙A2DP设备、chromecast设备。private MediaRouter mMediaRouter;// MediaRouter提供了快速获得系统中用于演示(presentations)默认显示设备的方法。private DemoPresentation mPresentation;private GLSurfaceView mSurfaceView;private TextView mInfoTextView;private boolean mPaused;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);/** 获取到媒体路由,当媒体路由被选择或取消选择或者路由首选的presentation显示屏幕发生变化时,* 它都会发送通知消息。一个应用程序可以非常简单通过地观察这些通知消息来自动地在首选的presentation* 显示屏幕上显示或隐藏一个presentation。*/mMediaRouter = (MediaRouter) getSystemService(Context.MEDIA_ROUTER_SERVICE);setContentView(R.layout.presentation_with_media_router_activity);mSurfaceView = (GLSurfaceView) findViewById(R.id.surface_view);// 设置我们要渲染的图形为CubeRenderermSurfaceView.setRenderer(new CubeRenderer(false));mInfoTextView = (TextView) findViewById(R.id.info);}@Overrideprotected void onResume() {super.onResume();/*** 注册一个具体的MediaRouter.Callback回调对象,并用来启动与特定MediaRouteSelector相匹配的媒体路由的发现* , 以及监听发现的媒体路由的相关事件,如用户已选择连接到某个媒体路由设备、某个媒体路由设备的特性发生改变或者断开某个媒体路由等事件。* 应用为了使用相关的媒体路由,必须调用该函数来启动媒体路由的发现,并通过登记的回调函数接收相关的事件。*/// 设置对媒体路由变化的监听mMediaRouter.addCallback(MediaRouter.ROUTE_TYPE_LIVE_VIDEO,mMediaRouterCallback);mPaused = false;updatePresentation();}@Overrideprotected void onPause() {super.onPause();// 移除回调监听mMediaRouter.removeCallback(mMediaRouterCallback);mPaused = true;updateContents();}@Overrideprotected void onStop() {super.onStop();// 当Activity不可见时,清除Presentationif (mPresentation != null) {Log.i(TAG,"Dismissing presentation because the activity is no longer visible.");mPresentation.dismiss();mPresentation = null;}}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {super.onCreateOptionsMenu(menu);// 加载菜单getMenuInflater().inflate(R.menu.presentation_with_media_router_menu,menu);MenuItem mediaRouteMenuItem = menu.findItem(R.id.menu_media_route);MediaRouteActionProvider mediaRouteActionProvider = (MediaRouteActionProvider) mediaRouteMenuItem.getActionProvider();mediaRouteActionProvider.setRouteTypes(MediaRouter.ROUTE_TYPE_LIVE_VIDEO);// 显示菜需要返回truereturn true;}/*** 代码示例展示了Presentation实现对象的作为一个单独方法的控制层.当一个显示器处理不可选状态或者失去联系时,该方法负责清除无效的展示对象,* 而在一个显示设备连接时负责创建一个展示对象。* * @description:* @author ldm* @date 2016-6-4 上午9:34:05*/private void updatePresentation() {// 获取当前路由MediaRouter.RouteInfo route = mMediaRouter.getSelectedRoute(MediaRouter.ROUTE_TYPE_LIVE_VIDEO);// 判断route信息是否为空,如果不为空则返回被选择演示(presentation)设备。该方法只对// route信息类型为ROUTE_TYPE_LIVE_VIDEO有效。Display presentationDisplay = route != null ? route.getPresentationDisplay() : null;// 清除无用的展示对象if (mPresentation != null&& mPresentation.getDisplay() != presentationDisplay) {Log.i(TAG,"Dismissing presentation because the current route no longer "+ "has a presentation display.");mPresentation.dismiss();mPresentation = null;}// 根据需要显示展示 对象if (mPresentation == null && presentationDisplay != null) {Log.i(TAG, "Showing presentation on display: "+ presentationDisplay);mPresentation = new DemoPresentation(this, presentationDisplay);mPresentation.setOnDismissListener(mOnDismissListener);try {mPresentation.show();} catch (WindowManager.InvalidDisplayException ex) {Log.w(TAG,"Couldn't show presentation!  Display was removed in "+ "the meantime.", ex);mPresentation = null;}}// 更新Activity中内容updateContents();}/*** 更新内容* * @description:* @author ldm* @date 2016-6-4 上午9:27:40*/private void updateContents() {if (mPresentation != null) {mInfoTextView.setText(getResources().getString(R.string.presentation_with_media_router_now_playing_remotely,mPresentation.getDisplay().getName()));mSurfaceView.setVisibility(View.INVISIBLE);mSurfaceView.onPause();if (mPaused) {mPresentation.getSurfaceView().onPause();} else {mPresentation.getSurfaceView().onResume();}} else {mInfoTextView.setText(getResources().getString(R.string.presentation_with_media_router_now_playing_locally,getWindowManager().getDefaultDisplay().getName()));mSurfaceView.setVisibility(View.VISIBLE);if (mPaused) {mSurfaceView.onPause();} else {mSurfaceView.onResume();}}}private final MediaRouter.SimpleCallback mMediaRouterCallback = new MediaRouter.SimpleCallback() {// 当用户连接到一个媒体路由输出设备上时调用。@Overridepublic void onRouteSelected(MediaRouter router, int type, RouteInfo info) {Log.d(TAG, "onRouteSelected: type=" + type + ", info=" + info);updatePresentation();}// 当用户断开一个媒体路由输出设备时调用。@Overridepublic void onRouteUnselected(MediaRouter router, int type,RouteInfo info) {Log.d(TAG, "onRouteUnselected: type=" + type + ", info=" + info);updatePresentation();}// 当展示的显示器改变现实像素,如从720p变到1080p分辨率。@Overridepublic void onRoutePresentationDisplayChanged(MediaRouter router,RouteInfo info) {Log.d(TAG, "onRoutePresentationDisplayChanged: info=" + info);updatePresentation();}};/*** Listens for when presentations are dismissed.*/private final DialogInterface.OnDismissListener mOnDismissListener = new DialogInterface.OnDismissListener() {@Overridepublic void onDismiss(DialogInterface dialog) {if (dialog == mPresentation) {Log.i(TAG, "Presentation was dismissed.");mPresentation = null;updateContents();}}};/*** 要为辅助显示屏创建独特的内容,您需要扩展Presentation类,并实现onCreate()回调方法。在onCreate()中,* 调用setContentView()来指定您要在辅助显示屏上显示的UI。* 作为Dialog类的扩展,Presentation类提供了一个区域,在其中, 您的应用可以在辅助显示屏上显示不同的UI。* * @description:* @author ldm* @date 2016-6-4 上午9:08:45*/private final static class DemoPresentation extends Presentation {/*** GLSurfaceView是一个视图,继承至SurfaceView,它内嵌的surface专门负责OpenGL渲染。* GLSurfaceView提供了下列特性: 1>* 管理一个surface,这个surface就是一块特殊的内存,能直接排版到android的视图view上。 2> 管理一个EGL* display,它能让opengl把内容渲染到上述的surface上。 3> 用户自定义渲染器(render)。 4>* 让渲染器在独立的线程里运作,和UI线程分离。 5> 支持按需渲染(on-demand)和连续渲染(continuous)。* 6>一些可选工具,如调试。*/private GLSurfaceView mSurfaceView;public DemoPresentation(Context context, Display display) {super(context, display);}@Overrideprotected void onCreate(Bundle savedInstanceState) {// 必须要写下面这句话,调用父类的onCreate();super.onCreate(savedInstanceState);// 设置布局setContentView(R.layout.presentation_with_media_router_content);// mSurfaceView对象获取:建立有趣的视觉mSurfaceView = (GLSurfaceView) findViewById(R.id.surface_view);mSurfaceView.setRenderer(new CubeRenderer(false));}public GLSurfaceView getSurfaceView() {return mSurfaceView;}}
}

相关代码请见:https://github.com/ldm520/ANDROID_API_DEMOS
参考博客:
http://blog.csdn.net/lilian0118/article/details/22940943
http://blog.csdn.net/michaelcao1980/article/details/9293441

这篇关于android媒体在二级设备上呈现和播放的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/927372

相关文章

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

用js控制视频播放进度基本示例代码

《用js控制视频播放进度基本示例代码》写前端的时候,很多的时候是需要支持要网页视频播放的功能,下面这篇文章主要给大家介绍了关于用js控制视频播放进度的相关资料,文中通过代码介绍的非常详细,需要的朋友可... 目录前言html部分:JavaScript部分:注意:总结前言在javascript中控制视频播放

Python+PyQt5实现多屏幕协同播放功能

《Python+PyQt5实现多屏幕协同播放功能》在现代会议展示、数字广告、展览展示等场景中,多屏幕协同播放已成为刚需,下面我们就来看看如何利用Python和PyQt5开发一套功能强大的跨屏播控系统吧... 目录一、项目概述:突破传统播放限制二、核心技术解析2.1 多屏管理机制2.2 播放引擎设计2.3 专

Android Kotlin 高阶函数详解及其在协程中的应用小结

《AndroidKotlin高阶函数详解及其在协程中的应用小结》高阶函数是Kotlin中的一个重要特性,它能够将函数作为一等公民(First-ClassCitizen),使得代码更加简洁、灵活和可... 目录1. 引言2. 什么是高阶函数?3. 高阶函数的基础用法3.1 传递函数作为参数3.2 Lambda

使用Python实现文本转语音(TTS)并播放音频

《使用Python实现文本转语音(TTS)并播放音频》在开发涉及语音交互或需要语音提示的应用时,文本转语音(TTS)技术是一个非常实用的工具,下面我们来看看如何使用gTTS和playsound库将文本... 目录什么是 gTTS 和 playsound安装依赖库实现步骤 1. 导入库2. 定义文本和语言 3

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

Android App安装列表获取方法(实践方案)

《AndroidApp安装列表获取方法(实践方案)》文章介绍了Android11及以上版本获取应用列表的方案调整,包括权限配置、白名单配置和action配置三种方式,并提供了相应的Java和Kotl... 目录前言实现方案         方案概述一、 androidManifest 三种配置方式

Android WebView无法加载H5页面的常见问题和解决方法

《AndroidWebView无法加载H5页面的常见问题和解决方法》AndroidWebView是一种视图组件,使得Android应用能够显示网页内容,它基于Chromium,具备现代浏览器的许多功... 目录1. WebView 简介2. 常见问题3. 网络权限设置4. 启用 JavaScript5. D

Android如何获取当前CPU频率和占用率

《Android如何获取当前CPU频率和占用率》最近在优化App的性能,需要获取当前CPU视频频率和占用率,所以本文小编就来和大家总结一下如何在Android中获取当前CPU频率和占用率吧... 最近在优化 App 的性能,需要获取当前 CPU视频频率和占用率,通过查询资料,大致思路如下:目前没有标准的

Android开发中gradle下载缓慢的问题级解决方法

《Android开发中gradle下载缓慢的问题级解决方法》本文介绍了解决Android开发中Gradle下载缓慢问题的几种方法,本文给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧... 目录一、网络环境优化二、Gradle版本与配置优化三、其他优化措施针对android开发中Gradle下载缓慢的问