Auto.js 这个console为何修改有透明效果?
//尝试启动悬浮框console.show();
var field = runtime.console.class.getDeclaredField("mConsoleFloaty");
field.setAccessible(true);
mConsoleFloaty = field.get(runtime.console);
mConsoleFloaty.expandedView.parent
.getChildAt(1)
.getChildAt(0)
.getChildAt(0)
.setBackgroundColor(colors.parseColor("#eeeeee"));
mConsoleFloaty.expandedView.parent
.getChildAt(1)
.getChildAt(0)
.getChildAt(1)
.setBackgroundColor(colors.parseColor("#eeeeee"));
let parent = mConsoleFloaty.expandedView.parent;
var inputView = parent.findViewById(context.getResources().getIdentifier("input", "id", context.getPackageName()));
var buttonView = parent.findViewById(context.getResources().getIdentifier("submit", "id", context.getPackageName()));
ui.run(function () {
inputView.setVisibility(8);
buttonView.setVisibility(8);
});
console.verbose("调整大小...");;
sleep(100);
console.setSize(500,300);
console.verbose("调整位置...");
sleep(100);
console.setPosition(800,device.height/500);
console.info("调整完毕");我想知道下面这个UI,如何修改后可以有透明效果。
已经解决。各位有更漂亮的ui吗··· 你这个漂亮 853679185 发表于 2021-6-2 16:12
你这个漂亮
一般般吧
页:
[1]