大约有 9,500 项符合查询结果(耗时:0.0545秒) [XML]

https://bbs.tsingfun.com/thread-1161-1-1.html 

App Inventor 2 最新QA汇总 - App Inventor 2 中文网 - 清泛IT社区,有思想、有深度

Q:App Inventor 2 中文网和电教馆的网站有什么区别? A:电教馆的网站基于AI伴侣2.2x版本,代码版本过旧(约5年前)。相应地,文档也过旧,而且仍然是英文的,没有中文化,参考意义不大。 中文网2023/03 通过过一次MIT最新代...
https://bbs.tsingfun.com/thread-1165-1-1.html 

App Inventor 2 手机AI伴侣进行测试时,为啥进度条卡在10%就一直不动? - A...

... 原因很简单:手机和电脑没有在同一局域网内导致的,App Inventor 2 测试原理是电脑端在局域网内启动一个WEB服务器,AI伴侣扫码后手机和WEB服务器进行通信,完成App的测试。因此如果不在一个局域网内,两者就无法进行通信。...
https://bbs.tsingfun.com/thread-1172-1-1.html 

【基础入门班】【大作业】爱学习App - App Inventor 2 中文网 - 清泛IT社区...

方向1:实用的学习App 练习模式: 英中模式:随机出一个英语单词,答案隐藏,有按钮可以查看答案。可以切换上一、下一题。 中英模式:同上,题面是中文。自己不确定的题目,可一键收藏,随后可以专门练习收藏的题目...
https://bbs.tsingfun.com/thread-1439-1-1.html 

APP inventor MQTT插件 - App Inventor 2 中文网 - 清泛IT社区,为创新赋能!

APP inventor在做远程控制APP 需要MQTT插件 谁有分享一下连接哦,谢谢https://www.fun123.cn/reference/components/connectivity.html#Mqtt
https://bbs.tsingfun.com/thread-1611-1-1.html 

App Inventor如何取文本每一个字符进行运算? - App Inventor 2 中文网 - ...

问:App Inventor如何取文本每一个字符进行运算? 答: [hide]1、拿出文本的长度,进行循环,然后用文本.截取方法,拿出每一个字符,比如某个字母'a'。 文档:https://www.fun123.cn/reference/blocks/text.html#segment 2、要看具体的每个...
https://bbs.tsingfun.com/thread-1635-1-1.html 

app inventor拍照的照片如何保存到手机相册? - App Inventor 2 中文网 - ...

问:你好!小朋友在做APP时,调用照相机模块拍的照片要存到相册里,指定了图像位址,但还是实现不了,是什么原因呀? 首先,这个照相机拍照完成事件中这个参数是图片的路径,是只读的,更改它没有用,只能考虑将这...
https://bbs.tsingfun.com/thread-1657-1-1.html 

【转】APP Inventor2 调用位置传感器在高德地图上显示当前位置存在偏差?你...

使用APP Inventor2 调用手机位置传感器获取到的GPS经纬度, 在高德地图上显示时发现显示的位置不是当前所在位置,原因是坐标格式不一致,需要进行坐标转换,将GPS坐标转换为高德坐标,才能正常的显示当前位置。 使用以下...
https://bbs.tsingfun.com/thread-1817-1-1.html 

如何查看Android应用.apk是32位还是64位? - App应用开发 - 清泛IT社区,为创新赋能!

...APK文件的信息,包括其支持的架构。 aapt dump badging your_app.apk | grep native-code 这条命令会输出APK支持的架构信息。aapt工具包含在Android SDK的Build-tools中。 请注意,如果一个APK支持多个架构,那么它会被认为是兼容的,因为And...
https://stackoverflow.com/ques... 

What is the maximum amount of RAM an app can use?

... of memory (in Megabytes / as percentage of the total RAM) that an Android application (that is not a system app) can use? That varies by device. getMemoryClass() on ActivityManager will give you the value for the device your code is running upon. Are there any differences between the Android ...
https://stackoverflow.com/ques... 

res.sendFile absolute path

...rently executing script is in. In your case, it looks like server.js is in app/. So, to get to public, you'll need back out one level first: ../public/index1.html. Note: path is a built-in module that needs to be required for the above code to work: var path = require('path'); ...