編輯:關於android開發
通過Socket + Instrumentation實現模擬鍵盤鼠標事件主要通過以下三個部分組成;
Socket編程:實現PC和Emulator通訊,並進行循環監聽;
Service服務:將Socket的監聽程序放在Service中,從而達到後台運行的目的。這裡要說明的是啟動服務有兩種方式,bindService和startService,兩者的區別是,前者會使啟動的Service隨著啟動Service的Activity的消亡而消亡,而startService則不會這樣,除非顯式調用stopService,否則一直會在後台運行因為Service需要通過一個Activity來進行啟動,所以采用startService更適合當前的情形;
Instrumentation發送鍵盤鼠標事件:Instrumentation提供了豐富的以send開頭的函數接口來實現模擬鍵盤鼠標,如下所述:
sendCharacterSync(int keyCode) //用於發送指定KeyCode的按鍵
sendKeyDownUpSync(int key) //用於發送指定KeyCode的按鍵
sendPointerSync(MotionEvent event) //用於模擬Touch
sendStringSync(String text) //用於發送字符串
注意:以上函數必須通過Message的形式拋到Message隊列中。如果直接進行調用加會導致程序崩潰。
對於Socket編程和Service網上有很多成功的范例,此文不再累述,下面著重介紹一下發送鍵盤鼠標模擬事件的代碼:
發送鍵盤KeyCode:
步驟1. 聲明類handler變量
private static Handler handler;
步驟2. 循環處理Message
java代碼:
//在Activity的onCreate方法中對下列函數進行調用
private void createMessageHandleThread(){
//need start a thread to raise looper, otherwise it will be blocked
Thread t = new Thread() {
public void run() {
Log.i( TAG,"Creating handler ..." );
Looper.prepare();
handler = new Handler(){
public void handleMessage(Message msg) {
//process incoming messages here
}
};
Looper.loop();
Log.i( TAG, "Looper thread ends" );
}
};
t.start();
步驟3. 在接收到Socket中的傳遞信息後拋出Message
java代碼:
handler.post( new Runnable() {
public void run() {
Instrumentation inst=new Instrumentation();
inst.sendKeyDownUpSync(keyCode);
}
} );
Touch指定坐標,如下例子即
java代碼:
touch point(240,400)
Instrumentation inst=new Instrumentation();
inst.sendPointerSync(MotionEvent.obtain(SystemClock.uptimeMillis(),SystemClock.uptimeMillis(),MotionEvent.ACTION_DOWN, 240, 400, 0));
inst.sendPointerSync(MotionEvent.obtain(SystemClock.uptimeMillis(),SystemClock.uptimeMillis(),MotionEvent.ACTION_UP, 240, 400, 0));
Zabbix_agent部署參考文檔: 1. zabbix監控linux主機:http://www.osyunwei.com/archives/8035.html 一.
Android深度探索與HAL驅動開發(卷1)-- 第七章隨筆,android驅動開發應用程序、庫、內核、驅動程序的關系 從上到下,一個軟件系統可以分為
如何取得nginx做反向代理時的真實IP?nginx做反向代理時的真實IP.pdf1.編譯對於client->nginxreverseproxy->apach
重寫MPAndroidChart顯示標記 MPAndroidChart是實現圖表功能的優秀控件, 可以完成大多數繪制需求. 對於修改第三方庫而言, 優秀的架構是繼承開發,