牙叔教程 简单易懂
importClass(android.graphics.Color); importClass(android.graphics.drawable.GradientDrawable); importClass(android.text.Spannable); importClass(android.text.SpannableStringBuilder); importClass(android.text.style.ForegroundColorSpan); importClass(android.graphics.LinearGradient); importClass(android.graphics.Shader); importClass(android.graphics.Bitmap); importClass("android.graphics.BitmapFactory"); importClass(android.graphics.BitmapShader); // 停止除了自己之外的其他脚本 engines.all().map((ScriptEngine) => { if (engines.myEngine().toString() !== ScriptEngine.toString()) { ScriptEngine.forceStop(); } }); /* -------------------------------------------------------------------------- */ let w = floaty.rawWindow(<View id="myView" margin="6" bg="#ff0000" w="10dp" h="100dp"></View>); setBackgroundRoundRounded(w.myView); ui.post(function () { w.setPosition(device.width - 60, device.height / 2 - w.getHeight()); }); setInterval(function () {}, 1000); /* -------------------------------------------------------------------------- */ function setBackgroundRoundRounded(view) { gradientDrawable = new GradientDrawable(); gradientDrawable.setShape(GradientDrawable.RECTANGLE); gradientDrawable.setColor(colors.parseColor("#ff0000")); gradientDrawable.setCornerRadius(60); gradientDrawable.setSize(50, 50); view.setBackground(gradientDrawable); }
名人名言
思路是最重要的, 其他的百度, bing, stackoverflow, github, 安卓文档, autojs文档, 最后才是群里问问
--- 牙叔教程
声明
部分内容来自网络
本教程仅用于学习, 禁止用于其他用途