-
V4L2-AndroidPCameraPHAL.tar
主要实现了android下的视频采集,采用了v4l2(Mainly achieved under the android video capture, using the v4l2)
- 2011-12-06 17:38:35下载
- 积分:1
-
Android执行远程安装APK功能
Android执行远程安装APK命令,远程安装APK,代码中已经定义了一个远程APK的路径,在Android环境下,执行安装命令,自动下载远程APK并执行安装。HttpResponse httpResponse = new DefaultHttpClient()
.execute(httpGet);
if (httpResponse.getStatusLine().getStatusCode() == 200)
{
InputStream is = httpResponse.getEntity().getContent();
FileOutputStream fos = new FileOutputStream(downloadPath
+ "/integration.apk");
byte[] buffer = new byte[8192];
int count = 0;
while ((count = is.read(buffer)) != -1)
{
fos.write(buffer, 0, count);
}
fos.close();
is.close();
installApk(downloadPath+ "/integration.apk");
}
- 2022-02-04 20:28:08下载
- 积分:1
-
安卓抽奖转盘 实例下载
安卓抽奖转盘 实例下载
- 2015-01-12下载
- 积分:1
-
UDP
说明: 测试安卓和电脑UDP通讯的源码,项目自带一个winform的客户端(Test the source code of Android and computer UDP communication, the project comes with a winform client)
- 2020-05-05 19:39:17下载
- 积分:1
-
viepager联动效果
能够实现画面的联动效果,点击一个button,viewpager会响应按钮的动作事件
- 2022-02-20 19:29:03下载
- 积分:1
-
用jfreechart实现的动态曲线
用jfreechart实现动态曲线,有系统产生随机数,然后画出曲线,并能实时显示曲线
- 2019-07-19下载
- 积分:1
-
DragButton
Android的一个类似滑动解锁的拖拉式按钮(A drag button used on Android system)
- 2012-02-24 11:34:29下载
- 积分:1
-
蓝牙寻找
1.使用registerReceiver注册BroadcastReceiver来获取蓝牙状态、搜索设备等消息;2.使用BlueAdatper的搜索;3.在BroadcastReceiver的onReceive()里取得搜索所得的蓝牙设备信息(如名称,MAC,RSSI);4.通过设备的MAC地址来建立一个BluetoothDevice对象;5.由BluetoothDevice衍生出BluetoothSocket,准备SOCKET来读写设备;6.通过BluetoothSocket的createRfcommSocketToServiceRecord()方法来选择连接的协议/服务,这里用的是SPP(UUID:00001101-0000-1000-8000-00805F9B34FB);7.Connect之后(如果还没配对则系统自动提示),使用BluetoothSocket的getInputStream()和getOutputStream()来读写蓝牙设备。
- 2022-03-17 02:50:27下载
- 积分:1
-
个性化的移动搜索
它 s 按用户偏好的搜索它的有效方法是 impletemented 使用 lib svm 算法与朴素贝叶斯分类方法
- 2022-02-03 08:14:54下载
- 积分:1
-
各种Android模糊毛玻璃效果的源代码
各种Android模糊毛玻璃效果的源代码
- 2014-10-03下载
- 积分:1