-
xmpp通信
用于xmpp通信协议的 安卓客户端程序,便于开发者迅速使用,而且可以直接导入到eclipse中,非常方便,代码的质量很高
- 2022-03-14 16:59:40下载
- 积分:1
-
列表控件下拉刷新
列表控件下拉刷新,使用自定义控件实现列表框控件上拉、下拉刷新,你可以在上拉、下拉事件添加自己的事件,比如网络访问等等等,很精彩的源代码,希望大家喜欢
- 2022-06-21 00:40:41下载
- 积分:1
-
带 Android 应用的桌面蓝牙锁定程序
翻译 maninwest@Codeforge 作者:Arkadeep De@CodeProject在创建了一个 USB 锁定程序后,我想应该创建一个蓝牙锁。这样做了以后,我想,为什么不创建一个安卓应用来访问呢?让我们一起来了解如何创建具有安卓应用的蓝牙锁定程序。使用代码让我们来了解代码。首先,您需要找到设备附近的蓝牙设备:InTheHand.Net.Sockets.BluetoothClient bc = new InTheHand.Net.Sockets.BluetoothClient();
InTheHand.Net.Sockets.BluetoothDeviceInfo[] array = bc.DiscoverDevices();在数组中,所有可发现的设备都会列出,现在你可以查看每个设备的 MAC 地址。 for (int i = 0; i < array.Length; i++)
{ this.address_array[i] = array[i].DeviceAddress;
mac = mac + this.address_array[i].ToString();
}完成检查后,检查你的设备的 mac 地址是否在发现的设备中。如果有,锁定计算机。如何锁定计算机:[DllImport("user32.dll", SetLastError = true)] static extern bool LockWorkStation(); bool result = LockWorkStation(); if (result == false)
{ // An error occurred throw new Win32Exception(Marshal.GetL
- 2022-06-14 15:28:20下载
- 积分:1
-
Android AlertDialog
- 2022-07-15 08:09:15下载
- 积分:1
-
Bunnypress
安卓智力型小游戏,对安卓初学者的开发编程很有帮助(Andrews intellectual game development programming helpful, Andrews beginners)
- 2020-12-21 16:39:08下载
- 积分:1
-
换肤框架源码
支持在线换肤,按照指定的格式进行生成皮肤包即可,包括对于代码中的图片及样式的调整,整个app的色调也可以更换
- 2023-01-26 04:55:16下载
- 积分:1
-
远程视频监控
【核心代码】 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 TTS语音播报
Android TTS语音播报,可以选择多种语言进行播报。可以下载来学习。
- 2023-09-06 10:35:04下载
- 积分:1
-
GMM模型Android代码
GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码GMM(高斯混合模型)的实现代码
- 2022-09-28 17:05:03下载
- 积分:1
-
Android执行linux命令的源代码
Android实现用代码来执行linux命令,本源码用eclispe编译通过,方便初学者快速掌握linux命令调用方法
- 2023-04-11 14:30:04下载
- 积分:1