-
远程视频监控
【核心代码】 public interface CameraSource { static final String LOG_TAG = "camera"; /** * Open the camera source for subsequent use via calls to capture(). * * @return true if the camera source was successfully opened. */ boolean open(); /** * Close the camera source. Calling close on a closed CameraSource is * permitted but has no effect. The camera source may be reopened after * being closed. */ void close(); /** * The width of the captured image. * * @return the width of the capture in pixels */ int getWidth(); /** * The height of the captured image. * * @return the height of the capture in pixels */ int getHeight(); /** * Attempts to render the current camera view onto the supplied canvas. * The capture will be rendered into the rectangle (0,0,width,height). * Outstanding transformations on the canvas may alter this. * * @param canvas the canvas to which the captured pixel data will be written * @return true iff a frame was successfully written to the canvas */ boolean capture(Canvas canvas); boolean saveImage(String savePath, String fileName); }
- 2013-12-04下载
- 积分:1
-
android-phone-battery-sourcecode
在装有android系统的手机上,该程序可以检测手机电池的存余量并显示。(This program can detect the battery of the phone and show the amount of the battery.)
- 2011-12-01 21:44:58下载
- 积分:1
-
jiqingtaiqiu
ANDROID系统3D游戏开发源程序,桌面类游戏《激情台球》(ANDROID system 3D game development source, desktop games " passion for billiards)
- 2012-07-06 15:41:59下载
- 积分:1
-
selenium范例
基于selenium2入门到精通在源码,不过里头有些代码是有问题的,大家只能拿来借鉴而已咯。
- 2022-01-21 20:15:59下载
- 积分:1
-
开发源码分享之在线音乐播放器完整项目
这是一个android程序,主要是实现了一音乐播放器,是一个开源项目,我个人觉得比较好,有需要的朋友可以下载下来看看,适合学习
- 2022-03-16 17:13:40下载
- 积分:1
-
动漫简介app源码(入门级)
【实例简介】可作为期中作品
- 2021-05-18 10:33:38下载
- 积分:1
-
连连看 Android 版 开发源码
Android SDK写的连连看,是一个完整的游戏源码,界面精美,游戏功能正常,编译后可安装在安卓机上玩一把。
连连看是过关游戏,带有音效,源代码中定义了各个游戏类,包括声音文件、定时器,碰撞测试等,有些地方写的很科学,比如音效控制部分,初始化soundPool 对象,第一个参数是允许有多少个声音流同时播放,第2个参数是声音类型,第三个参数是声音的品质等,定义了Function: play(); Parameters: sound:要播放的音效的ID, loop:循环次数 Returns: None.
- 2022-10-27 13:20:05下载
- 积分:1
-
Bluetooth-LE-Scanner
android蓝牙4.0搜索链接源码,适合初学者学习
- 2023-05-21 05:10:03下载
- 积分:1
-
Android的水平列表视图
android 水平的listview,实现listview水平布局,水平图片等,自己觉得一个很有用的组件,拿来分享下!
- 2022-03-13 01:11:15下载
- 积分:1
-
android图像识别OCR
简单的图像识别技术,android实现,通过检测暗、亮的模式确定其形状,然后用字符识别方法将形状翻译成计算机文字的过程;即,针对印刷体字符,采用光学的方式将纸质文档中的文字转换成为黑白点阵的图像文件,并通过识别软件将图像中的文字转换成文本格式,供文字处理软件进一步编辑加工的技术
- 2022-05-26 23:58:49下载
- 积分:1