android 使用shell模拟触屏_如何在Android中模拟触摸事件?

这是一个monkeyrunner脚本,可以将触摸和拖动发送到应用程序。我一直用它来测试我的应用程序可以处理快速重复的滑动手势。# This is a monkeyrunner jython script that opens a connection to an Android# device and continually sends a stream of swipe and touch gestures.## See http://developer.android.com/guide/developing/tools/monkeyrunner_concepts.html## usage: monkeyrunner swipe_monkey.py## Imports the monkeyrunner modules used by this programfrom com.android.monkeyrunner import MonkeyRunner, MonkeyDevice# Connects to the current devicedevice = MonkeyRunner.waitForConnection()# A swipe left from (x1, y) to (x2, y) in 2 stepsy = 400x1 = 100x2 = 300start = (x1, y)end = (x2, y)duration = 0.2steps = 2pause = 0.2for i in range(1, 250):

# Every so often inject a touch to spice things up!

if i % 9 == 0:

device.touch(x2, y, 'DOWN_AND_UP')

MonkeyRunner.sleep(pause)

# Swipe right

device.drag(start, end, duration, steps)

MonkeyRunner.sleep(pause)

# Swipe left

device.drag(end, start, duration, steps)

MonkeyRunner.sleep(pause)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值