Android调用Jlibrtp库实现RTP发送数据Demo,建立收发端会话,配置RTP/RTCP端口号,添加参与者等;请参考我的博客:http://blog.csdn.net/ericfantastic/article/details/49361069
2019-12-21 19:42:19 2.61MB Jlibrtp Android RTP
1
可调用系统相机,相册来获取图片,并对获取到的图片进行简单处理
2019-12-21 19:36:39 1.2MB android 系统相机 系统相册
1
Android调用手机系统自带录音功能实现语音录制与播放
2019-12-21 19:36:33 9.41MB 手机自带录音
1
使用Qt for android调用原生系统的摄像头来录取设备,稳定高效,使用于安卓7.0版本及以上,测试在魅族5.0会后台死掉,但是录像会成功
2019-12-21 19:35:03 8.48MB qt 原生录像
1
android调用camera时,可以自己写一个activity,赋上相关参数,打开前camera就可以了; 需要申请的permission,在AndroidManifest.xml中添加: 主要功能,打开前camera private Camera openFrontFacingCameraGingerbread() { int cameraCount = 0; Camera cam = null; Camera.CameraInfo cameraInfo = new Camera.CameraInfo(); cameraCount = Camera.getNumberOfCameras(); for (int camIdx = 0; camIdx < cameraCount; camIdx++) { Camera.getCameraInfo(camIdx, cameraInfo); if (cameraInfo.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) { try { cam = Camera.open(camIdx); mCurrentCamIndex = camIdx; } catch (RuntimeException e) { Log.e(TAG, "Camera failed to open: " + e.getLocalizedMessage()); } } } return cam; } 根据打开时的横竖屏方向来调整preview角度 //根据横竖屏自动调节preview方向,Starting from API level 14, this method can be called when preview is active. private static void setCameraDisplayOrientation(Activity activity,int cameraId, Camera camera) { Camera.CameraInfo info = new Camera.CameraInfo(); Camera.getCameraInfo(cameraId, info); int rotation = activity.getWindowManager().getDefaultDisplay().getRotation(); //degrees the angle that the picture will be rotated clockwise. Valid values are 0, 90, 180, and 270. //The starting position is 0 (landscape). int degrees = 0; switch (rotation) { case Surface.ROTATION_0: degrees = 0; break; case Surface.ROTATION_90: degrees = 90; break; case Surface.ROTATION_180: degrees = 180; break; case Surface.R
2019-12-21 19:32:28 628KB android 前摄像头 横竖屏预览
1
可以调用系统的分享功能,分享视频,图片到第三方软件。
2019-12-21 19:30:18 23.85MB share 图片 视频
1
Qt for android 调用Java 代码的示例程序
2019-12-21 18:51:59 27KB QT;Java
1
Android调用WebService的例子(包括服务器端和客户端)。服务器端使用CXF框架发布,Android客户端使用KSOAP2包读取数据。 分别提供了JavaBean、XML、JSON数据类型的通信方式。
2018-04-16 10:47:44 11.45MB Android WebService
1
Android调用WPS_DEMO,使用起来很简单
2015-05-28 00:00:00 45KB Android_WPS
1