大约有 1,200 项符合查询结果(耗时:0.0055秒) [XML]

https://www.fun123.cn/referenc... 

App Inventor 2 AlphaDialog 对话框扩展 · App Inventor 2 中文网

... AlphaDialog 对话框扩展 拓展下载 « 返回首页 AlphaDialog 对话框扩展 Alpha Dialog 是一个简单但功能强大且易于使用的扩展,您可以在项目中自由使用它来创建令人惊叹且独特的对话框。 该...
https://www.fun123.cn/referenc... 

App Inventor 2 使用 MaterialIcons 图标字体,快捷展示专业图标 · App Inventor 2 中文网

...专业图标 字体下载 « 返回首页 平时布局的话,如果要使用图标,一般需要去找 png 图片,且透明背景的。如果需要根据不同常见图标进行变色的话,就需要准备多张不同样式的图标,还要考虑...
https://www.fun123.cn/referenc... 

App Inventor 2 怎么修改app图标? · App Inventor 2 中文网

... 设置图标 镂空效果 « 返回首页 设置图标 在默认屏幕Screen1的属性“图标”中修改,如图: 点击?,可以查看属性的帮助,“更多信息”可跳转中文文档页面: ...
https://www.fun123.cn/referenc... 

App Inventor 2 连接方式:AI伴侣、模拟器、USB · App Inventor 2 中文网

...AI伴侣、模拟器、USB « 返回首页 App Inventor 2 连接测试App 从功能上来说大致分为3类,在连接菜单下: 但是每种类型下面仍有一些不同的选择,下面开始介绍各种连接方式的特点: ...
https://www.fun123.cn/referenc... 

App Inventor 2 FTP 客户端拓展:FTP协议连接、上传、下载、创建、修改目录...

...TP 客户端拓展 属性 事件 方法 « 返回首页 FTP 客户端拓展 FTP 客户端:FTP协议连接、上传、下载、创建、修改目录等。 需要的权限点:READ_EXTERNAL_STORAGE 和 WRITE_EXTERNAL_STORAGE。 .aix 拓...
https://www.fun123.cn/referenc... 

创建自定义 TinyWebDB 服务 · App Inventor 2 中文网

...自定义 TinyWebDB 服务 « 返回首页 TinyWebDB is an App Inventor component that allows you to store data persistently in a database on the web. Because the data is stored on the web instead of a particular phone, TinyWebDB can be used to facilitate ...
https://www.fun123.cn/referenc... 

将 App Inventor 2 项目连接到外部传感器 · App Inventor 2 中文网

...目连接到外部传感器 « 返回首页 将 App Inventor 2 项目连接到外部传感器 Note: This report describes work carried out in Spring 2014 for an Undergraduate Advanced Project in the MIT Department of Electrical Engineering and Computer S...
https://www.tsingfun.com/it/cpp/665.html 

线程访问窗口资源的问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

...言出错(状况2,3). 也是因这个原因,GetDlgItem()等常用函数返回的都是临时对象,不能在程序中保存以在以后使用,而应该随用随取.注意MSDN中的说明:The returned pointer may be temporary and should not be stored for later use. 下面...
https://www.tsingfun.com/it/cpp/1416.html 

ZeroMQ实例-使用ZMQ(ZeroMQ)进行局域网内网络通信 - C/C++ - 清泛网 - 专注C/C++及内核技术

...的消息,当超过5秒没有接到消息时, //zmq_recv函数返回错误信息 ,并使用zmq_strerror函数进行错误定位 if(zmq_recv(pSock, szMsg, sizeof(szMsg), 0) < 0) { printf("error = %s\n", zmq_strerror(errno)); continue; ...
https://www.tsingfun.com/it/bigdata_ai/344.html 

海量数据相似度计算之simhash短文本查找 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...?我们要查找一个key值时,通过传入一个key就可以很快的返回一个value,这个号称查找速度最快的数据结构是如何实现的呢?看下hashmap的内部结构: 如果我们需要得到key对应的value,需要经过这些计算,传入key,计算key的hashco...