|
沙发
楼主 |
发表于 2023-3-30 17:40:39
|
只看该作者
沙发 心灵亮光说: require "import"
import "android.widget.*"
import "com.androlua.*"
import "android.graphics.Rect"
layout=
{
LinearLayout,
orientation=1,
layout_width=-1,
layout_height=-1,
{
EditText,
id="edit",
hint="名称(不输入将对当前位置进行点击)",
layout_width=-1,
layout_height="10%h",
layout_weight=1,
},
{
EditText,
id="edit2",
hint="次数",
layout_width=-1,
layout_height="10%h",
layout_weight=1,
InputType="number"
},
{
EditText,
id="edit3",
hint="程序名称(当前位置点击必须输入)",
layout_width=-1,
layout_height="10%h",
layout_weight=1,
},
{
Button,
text="确定",
onClick="qd",
layout_width=-1,
layout_height="10%h",
layout_weight=1,
},
}
dlg=LuaDialog()
.setView(loadlayout(layout))
.show()
function qd()
dlg.hide()
if edit.text==""
local p=Rect()
node.getBoundsInScreen(p)
service.copy("!@#\n".."["..string.format("%.0f,%.0f",(p.left+(p.right-p.left)/2),(p.top+(p.bottom-p.top)/2))..","..edit2.text..","..edit3.text.."]")
else
service.copy("!@#\n".."*"..edit.text.."*".."<"..edit2.text.."$100")
end
end
本楼来自 天坦百宝箱 |
|