保存UI参数脚本读取值
所有的UI 界面的内容都是为了给脚本服务的,比如我有个编辑框 用户在编辑框输入了文字后脚本怎么读?所以先保存然后脚本才能读取否则读东西是空的
交互逻辑
先在xml写一个编辑框,一个按钮
在ui.js 读取一下编辑框的内容,点击按钮后保存编辑框的内容最后脚本去读取存储的值
xml示例
<?xml version="1.0" encoding="UTF-8" ?>
<ScrollView
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:android="http://schemas.android.com/apk/res/android"
xsi:noNamespaceSchemaLocation="layout.xsd"
android:layout_height="match_parent"
android:layout_width="match_parent">
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
android:padding="20dp">
<EditText android:layout_width="match_parent"
android:layout_height="wrap_content"
android:tag="edit"
android:text="我是编辑框"
android:hint="请输入内容"/>
<Button android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="保存"
android:tag="btn"/>
</LinearLayout>
</ScrollView>
ui.js示例
function main() {
ui.layout("参数设置", "main.xml");
ui.setUIvar();// 初始化并将所有xml里的组件转为对象
let edit = ui.findViewByTag("edit");// 获取 EditText 组件 tag属性为 edit 的对象
ui.setEvent("btn","click",function ( view) {
let 读取编辑框的内容= edit.getText()+""
toast("读取编辑框的内容: "+ 读取编辑框的内容);
ui.saveAllConfig();// 保存全部值
ui.saveConfig("edit",读取编辑框的内容);// 保存单个值 第一个参数为Key 第二个参数为具体的值
})
}
main();
main.js 脚本读取示例
function main() {
//开始再这里编写代码了!!
//如果自动化服务正常
if (!autoServiceStart(3)) {
logd("自动化服务启动失败,无法执行脚本")
exit();
return;
}
logd("开始执行脚本...")
let UI编辑框的值 = readConfigString("edit");// 读取tag为edit的编辑框组件存储的值
logd(UI编辑框的值);
}
我是Mr-老鬼、QQ1156346325
-------------------------版权声明----------------------
版权所有~Mr-老鬼 ~转载请注明原文地址。
免责声明:本文所有的教程仅限交流学习使用不得用于违法用途,造成的法律后果本人不承担责任。