Empenguin  

随笔分类 -  android test

android test
  • 图片测试脚本
    摘要:#!/bin/bashecho "Hello World !"declare -i i=0while [ $i -lt 150 ]do echo $i adb push ./1.png "/sdcard/LEWA/theme/deskwallpaper/${i}.png" let ... 阅读全文
    posted @ 2015-11-09 16:54 Empenguin 阅读(196) 评论(0) 推荐(0)
  • android test
    摘要:Instrumentation:monitor all of theinteraction the system has with the application里面提供了许多有用的方法:如sendKeySync,实现方法(IWindowManager.Stub.asInterface(ServiceManager.getService("window"))) .injectKeyEvent(event, true);通过模拟Input的sendKeyEvent给WindowManger发送事件。android测试流程: 阅读全文
    posted @ 2013-05-06 17:48 Empenguin 阅读(160) 评论(0) 推荐(0)