美文网首页
android 自己app当中实现模拟点击

android 自己app当中实现模拟点击

作者: zuopiezi5200 | 来源:发表于2019-10-28 17:37 被阅读0次

    1.代码实现如下:

    Instrumentation inst = new Instrumentation(); inst.sendPointerSync(MotionEvent.obtain(SystemClock.uptimeMillis(),SystemClock.uptimeMillis(),MotionEvent.ACTION_DOWN, 500, 500, 0)); inst.sendPointerSync(MotionEvent.obtain(SystemClock.uptimeMillis(),SystemClock.uptimeMillis(),MotionEvent.ACTION_UP, 500, 500, 0));

    2.AndroidManifest.xml配置

    <uses-permission android:name="android.permission.INJECT_EVENTS" tools:ignore="ProtectedPermissions" />

    3.如报错需在AndroidManifest.xml首元素中添加:

    xmlns:tools="http://schemas.android.com/tools"

    相关文章

      网友评论

          本文标题:android 自己app当中实现模拟点击

          本文链接:https://www.haomeiwen.com/subject/gfqructx.html