加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mConsole.js 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
yuaErha 提交于 2020-08-25 13:36 . xx
"ui";
let resource = context.getResources();
ui.layout(
<vertical>
<com.stardust.autojs.core.console.ConsoleView
id="console"
background="#7f000000"
h="*" />
</vertical>
);
ui.console.setConsole(runtime.console);
let c = new android.util.SparseArray();
let Log = android.util.Log;
c.put(Log.VERBOSE, new java.lang.Integer(colors.parseColor("#dfc0c0c0")));
c.put(Log.DEBUG, new java.lang.Integer(colors.parseColor("#cc000000")));
c.put(Log.INFO, new java.lang.Integer(colors.parseColor("#ff64dd17")));
c.put(Log.WARN, new java.lang.Integer(colors.parseColor("#ff2962ff")));
c.put(Log.ERROR, new java.lang.Integer(colors.parseColor("#ffd50000")));
c.put(Log.ASSERT, new java.lang.Integer(colors.parseColor("#ffff534e")));
ui.console.setColors(c);
//隐藏日志输入框和按钮
//log(com.autojs.autojs.R.id.input_container)
input_container = activity.findViewById(resource.getIdentifier("input_container", "id", context.getPackageName()));
input_container.attr("visibility", "gone");
//测试输出
var items = ["log", "verbose", "info", "warn", "error"]
for (key in items) console[items[key]](items[key]);
setInterval(() => {
for (key in items) console[items[key]](items[key]);
}, 2000);
events.on('exit', () => {
console.clear()
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化