提交 1338475c authored 作者: 汪显鹏's avatar 汪显鹏

完善Andorid 支持自定义指令

上级 362076a9
......@@ -23,31 +23,104 @@
### 开发版本: http://app.ubainsyun.com/ubainsDevelop
#### 说明
- 标准版版本相对稳定,经过大量验证测试使用,可以放心使用,但是无相关Android 特性。
- 标准版版本相对稳定,经过大量验证测试使用,可以放心使用,但是无相关Android 特性。
- 开发版本随时更新许多新特性,但是未经过大量测试验证,存在一定风险,如不追求新特性,控件,建议使用标准版本。
## 方法说明:
| 方法名称 | 说明 | 代码 |
| :-------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
| FONTSIZE | 修改按钮字体大小或者文本框文字大小 | |
| FONTCOLOR | 修改按钮字体颜色或者文本框文字颜色 | |
| TEXT | 修改按钮文字或者文本框文字 | |
| POS | 移动View 的位置 | |
| SIZE | 设置View 的宽、高 | |
| IMAGEPIC | 修改Image,Button 的图片 | |
| BUTTONDOWNIMAGE | 修改Image,Button 按下的图片 | |
| BARNODEPOSITION | 修改进度条的值 | |
| APPJUMP | 更具包名跳转到指定的app界面 | BroadcastChangeProperty(FindGUIObject('ddd'),'APPJump', "com.android.browser"); |
| IOLIGHT | UT-13、 UT-10 灯光控制<br />开绿灯 0x41 <br />关绿灯 0x40<br />开红灯 0x31<br />关绿灯 0x30<br />开门 0x51<br />关门 0x51 | BroadcastChangeProperty(FindGUIObject('ddd'),'IOLight',0x41);<br /> |
| ASGIF | 加载GIF 动画 | BroadcastChangeProperty(FindGUIObject('imageOne'),'ASGif','images\\321.gif'); |
| HIDEVIEW | 隐藏View | BroadcastChangeProperty(FindGUIObject('eee'),'hideview',''); |
| SHOWVIEW | 显示View | BroadcastChangeProperty(FindGUIObject('eee'),'showview',''); |
| | | |
| 方法名称 | 说明 | 代码 | |
| --------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ---- |
| FontSize | 修改按钮字体大小或者文本框文字大小 | BroadcastChangeProperty(FindGUIObject('aaa'),'FontSize', "20"); | |
| FontColor | 修改按钮字体颜色或者文本框文字颜色 | BroadcastChangeProperty(FindGUIObject('aaa'),'FonTColor', "[225,0,0]"); | |
| Text | 修改按钮文字或者文本框文字 | | |
| Pos | 移动View 的位置 | | |
| Size | 设置View 的宽、高 | | |
| ImagePic | 修改Image,Button 的图片 | | |
| ButtonDownImage | 修改Image,Button 按下的图片 | | |
| BarNodePosition | 修改进度条的值 | | |
| AppJump | 更具包名跳转到指定的app界面 | BroadcastChangeProperty(FindGUIObject('ddd'),'APPJump', "com.android.browser"); | |
| IoLight | UT-13、 UT-10 灯光控制<br />开绿灯 0x41 <br />关绿灯 0x40<br />开红灯 0x31<br />关绿灯 0x30<br />开门 0x51<br />关门 0x50 | BroadcastChangeProperty(FindGUIObject('ddd'),'IOLight',0x41);<br /> | |
| AsGif | 加载GIF 动画 | BroadcastChangeProperty(FindGUIObject('imageOne'),'ASGif','json'); | |
| HideView | 隐藏View | BroadcastChangeProperty(FindGUIObject('eee'),'hideview',''); | |
| ShowView | 显示View | BroadcastChangeProperty(FindGUIObject('eee'),'ShowView',''); | |
| showList | 显示list二维数组列表 | | |
| ActivityJump | App内页面跳转 | BroadcastChangeProperty(FindGUIObject('video'),'ActivityJump', 'VideoActivity'); | |
| GetInput | 获取输入框数据 | BroadcastChangeProperty(FindGUIObject('inputbox1'),'getInput', ''); | |
| setInput | 设置输入框的值 | BroadcastChangeProperty(FindGUIObject('inputbox1'),'setInput', '测试文字'); | |
| setInputHint | 设置提示文字 | BroadcastChangeProperty(FindGUIObject('inputbox1'),'setInputHint', '测试文字'); | |
| hideInput | 隐藏键盘 | BroadcastChangeProperty(FindGUIObject('inputbox1'),'hideInput', ''); | |
| showInput | 显示键盘 | BroadcastChangeProperty(FindGUIObject('inputbox1'),'showInput', ''); | |
| setInputFocus | 设置输入框焦点 | | |
| | | | |
| | | | |
| | | | |
1.根据中控编写程序 在 Button_Push (按下)、Button_Release(松手)、Button_Hold(长按) 以及Hold_Time 多少毫秒触发事件
**按下**
```java
/**
*按钮按下方法,需要传入按下按钮的 UUID
* @param btnId UUID
*/
public void sendBtnActionDown(String btnId) {
count = count + 1;
String body = "{\"btnid\": \"" + btnId + "\", \"btndown\": 0, \"command\": \"CallButton\", \"seq\": " + count + ", \"uniq_id\": \"2ce1ca9ee7d711e8bfde001a7dda7111\"}";
sendData(body, isLine);
}
```
## 方法说明:
**松手**
```java
/**
* 按钮松手
* @param btnId UUID
*/
public void sendBtnActionUp(String btnId) {
count = count + 1;
String body = "{\"btnid\": \"" + btnId + "\", \"btndown\": 2, \"command\": \"CallButton\", \"seq\": " + count + ", \"uniq_id\": \"2ce1ca9ee7d711e8bfde001a7dda7111\"}";
}
```
**按钮移动**
```java
/**
* 按钮移动
* @param objID UUID
*/
public void sendBtnActionMove(String objID, float x, float y) {
count = count + 1;
String body = "{\"seq\":" + count + ",\"command\":\"ControllerChangeProperty\",\"value\":[" + x + "," + y + "],\"property_name\":\"Pos\",\"obj_id\":\"" + objID + "\"}";
}
```
**方法说明:**
```json
{
"seq": 33472,
"command": "ChangeProperty",
"objid": "501fd972fbbf11e8a974d4258b878bb9",
"value": 22, //数据
"name": "FontSize" //指令
}
```
##
ASGIF
......
No preview for this file type
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论