# 主屏activity内:
privateSecondDisplay secondDisplay;privatevoiddualScreen3288(){DisplayManager displayManager =(DisplayManager)getApplicationContext().getSystemService(DISPLAY_SERVICE);if(displayManager !=null){Display[] presentationDisplays = displayManager.getDisplays(DisplayManager.DISPLAY_CATEGORY_PRESENTATION);//检测到主屏外显示屏数if(presentationDisplays.length >0){// If there is more than one suitable presentation display, then we could consider giving the user a choice. For this example, we simply choose the first display which is the one the system recommends as the preferred presentation display.//多个附加屏时可自由选择,这里选第一个
secondDisplay =newSecondDisplay(this, presentationDisplays[0]);try{
secondDisplay.show();}catch(Throwable e){
e.printStackTrace();}}else{logError("showDualScreen: 未找到副屏!");}}}//关闭副屏privatevoidcloseSecondScreen(){if(secondDisplay !=null){
secondDisplay.release();
secondDisplay.dismiss();
secondDisplay =null;}}
一.引言
文字识别,也称为光学字符识别(Optical Character Recognition, OCR),是一种将不同形式的文档(如扫描的纸质文档、PDF文件或数字相机拍摄的图片)中的文字转换成可编辑和可搜索的数据的技术。随着技…
Spring Boot
Spring Boot 入门 Spring Boot 简介(脚手架)
简化Spring应用开发的一个框架;
整个Spring技术栈的一个大整合;
J2EE开发的一站式解决方案;
优点:快速创建独立运行的spring项目以及与主流…