大约有 37,000 项符合查询结果(耗时:0.0266秒) [XML]

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

App Inventor 2 怎么做倒计时,时倒计时,分倒计时,秒倒计时怎么做? - A...

...1小时,启动后开始显示倒计时?,客位大老能做个实例,谢谢?https://www.fun123.cn/reference/components/guide/Clock.html 知识点都在这里,代码需要你自己写!(^◡^)っ✎
https://bbs.tsingfun.com/thread-1850-1-1.html 

App Inventor 2 界面文本怎么很难对齐呢? - App应用开发 - 清泛IT社区,为创新赋能!

...一般使用表格布局,左右就能对齐。你说垂直没有对齐?可以尝试调整一下文本框的高度。
https://bbs.tsingfun.com/thread-1995-1-1.html 

如何调整超出屏幕部分的布局 - App应用开发 - 清泛IT社区,为创新赋能!

如何调整超出屏幕部分的布局 上图中,需要调整哪部分布局?能描述详细一些,谢谢
https://bbs.tsingfun.com/thread-2044-1-1.html 

如何让底部导航栏固定不随屏幕滑动而滑动呢? - App Inventor 2 中文网 - ...

...直滚动布局实现: 有点没看太明白,需要下载那个拓展App Inventor 2  发表于 2024-11-06 10:30 垂直滚动布局实现: 其他内容用了垂直滚动布局,但导航栏还会跟着滑动
https://bbs.tsingfun.com/thread-2047-1-1.html 

BLE数据收发 20个字节的限制问题 - 创客硬件开发 - 清泛IT社区,为创新赋能!

请问BLE插件只支持20个字节的数据接收与发送,我尝试超过20个字节就会自动忽略掉后面的字节RequestMTU – 为 BluetoothLE 连接请求新的最大传输单元 (MTU)。此功能仅在两个设备都支持蓝牙 4.2 或更高版本时才受支持。如果 MTU 更改...
https://bbs.tsingfun.com/thread-2655-1-1.html 

有没有滑动选择框拓展? - App Inventor 2 拓展 - 清泛IT社区,为创新赋能!

Q: 有类似这种滑动选择的相关拓展
https://www.tsingfun.com/it/cpp/2263.html 

去掉std::string或std::wstring最后一个字符的几种简单方法 - C/C++ - 清泛...

去掉std::string或std::wstring最后一个字符的几种简单方法去掉std::string或std::wstring的最后一个字符:1、s pop_back(); 2、s erase(s end() - 1); 3、s = s substr(0, s length() - 1);去掉std::string或std::wstring的最后一个字符: // 方法1 s.pop_back(); // 从...
https://www.tsingfun.com/it/cpp/1622.html 

CString的截取字符串,截取ip:port - C/C++ - 清泛网 - 专注C/C++及内核技术

CString的截取字符串,截取ip:portCString截取ip:port,代码如下:CString strIpPort = "127.0.0.1:8888";CString strIp, strPort;int index = strIpPort.Find('...CString截取ip:port,代码如下: CString strIpPort = "127.0.0.1:8888"; CString strIp, strPort; int index = strIpPort.Fi...
https://bbs.tsingfun.com/thread-2485-1-1.html 

APP Inventor 字符串怎么表示? - App应用开发 - 清泛IT社区,为创新赋能!

Q:APP Inventor 字符串怎么表示? A:文本下的字符串,不填写任何内容,就字符串。 详见文档:https://www.fun123.cn/reference/blocks/text.html#string
https://www.tsingfun.com/it/cpp/1528.html 

sizeof、strlen简单总结 - C/C++ - 清泛网 - 专注C/C++及内核技术

sizeof、strlen简单总结sizeofstrlenconst char* p4字符串长度std::string4字符串长度"......"字符串长度+1 (' 0')字符串长度 sizeof strlen const char* p 4 字符串长度 std::string 4 字符串长度 "......" 字符串长度+1 ('\0')...