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

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

App Inventor 2如何计算1加到100总和?(经典循环写法) - App Invento...

... 这个代码块作用是指定一个数学范围,在这个范围内进行循环。 逻辑就是从1循环到100,每次循环值累加到变量“总和”中,代码如下: 我们看下执行结果: 再思考一下,使用”满足条件 重复执行“代码块如何实...
https://www.fun123.cn/referenc... 

App Inventor 2 计时器(Clock)详细用法示例 · App Inventor 2 中文网

...文本,然后用逻辑判断代码块,和你要想到时间点文本进行比较,如果相等,则到了你预定时间点,做你预想事情。 如何实现多个定时任务? 可以用多个计时器组件,分别设置不同时间,分别触发处...
https://bbs.tsingfun.com/thread-1974-1-1.html 

AppInventor2中二进制数据以什么样形式传递?字节列表、字节数组是什么...

...节数组,但它们可以作为扩展之间通用 Object 类型变量进行交换。 MQTT拓展中字节数组处理方式就是这种,直接转换成byte[]: @SimpleFunction(description = "Publishes a binary array.")     public void PublishByteArray(String Topic...
https://bbs.tsingfun.com/thread-1993-1-1.html 

界面很多按钮时,如何获取当前被点击按钮文本? - App Inventor 2 中文...

...话,通常做法定义一个前值,一个后值,当按下符号后进行切换,最终前值、符号、后值就能计算最终结果了。
https://stackoverflow.com/ques... 

Border for an Image view in Android?

... encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#FFFFFF" /> <stroke android:width="1dp" android:color="#000000" /> <padding android:left="1dp" android:top="1dp" android:right="1dp" android:bottom...
https://stackoverflow.com/ques... 

How to make the corners of a button round?

...coding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:state_pressed="true" > <shape android:shape="rectangle" > <corners android:radius="3dip" /> <stroke android:width="1dip" android:co...
https://stackoverflow.com/ques... 

How to draw border on just one side of a linear layout?

...ding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="rectangle"> <solid android:color="#FF0000" /> </shape> </item> <item android:left="5dp"> <shape android:shape="recta...
https://stackoverflow.com/ques... 

Android LinearLayout : Add border with shadow around a LinearLayout

...ding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="rectangle"> <solid android:color="#CABBBBBB"/> <corners android:radius="2dp" /> </shape> </ite...
https://www.tsingfun.com/it/cpp/967.html 

ATL创建ActiveX(COM组件)实现JS回调 - C/C++ - 清泛网 - 专注C/C++及内核技术

...his便是),然后通过它就可以在ATL中任意获取网页元素,进行Invoke调用,详细请参见《ATL COM开发入门(二)(ActiveX/COM组件回调JS)》。 ATL ActiveX COM JS回调
https://www.tsingfun.com/it/cpp/968.html 

ATL COM开发入门(二)(ActiveX/COM组件回调JS) - C/C++ - 清泛网 - 专注C/C++及内核技术

...his便是),然后通过它就可以在ATL中任意获取网页元素,进行Invoke调用。 定时器采用Win32 APISetTimer,在回调函数中回调前台js函数,显示计数。 一、ATLDemo.idl 中添加一个新接口: BeginTiming函数体: STDMETHODIMP CAtlDemoIf::...