- 相關(guān)推薦
android面試調(diào)試技巧
1. Android adb shell 啟動(dòng)java程序
(1) 進(jìn)入shell
C:\Documents and Settings\mawenjian>adb shell
(2) 看一下命令的幫助
# am -help
am -help
Error: Unknown command: -help
usage: am [start|instrument]
am start [-a ] [-d ] [-t ]
[-c [-c ] ...]
[-e [-e ...]
[-n <:COMPONENT>] [-D] []
am instrument [-e ] [-p ]
[-w] <:COMPONENT>
(3) 好了,試一下啟動(dòng)瀏覽器
# am start -n com.google.android.browser/com.google.android.browser.BrowserActivity
am start -n com.google.android.browser/com.google.android.browser.BrowserActivity
Starting: Intent { comp={com.google.android.browser/com.google.android.browser.BrowserActivity} }
(4) ok,成功了, 大家試試下面的命令吧:
# am start -a android.intent.action.VIEW -d http://mwjian.javaeye.com
am start -a android.intent.action.VIEW -d http://mwjian.javaeye.com
Starting: Intent { action=android.intent.action.VIEW data=http://mwjian.javaeye.com }
# am start -a android.intent.action.CALL -d tel:88888888
am start -a android.intent.action.CALL -d tel:88888888
Starting: Intent { action=android.intent.action.CALL data=tel:88888888 }
# am start -a android.intent.action.ALL_APPS
am start -a android.intent.action.ALL_APPS
Starting: Intent { action=android.intent.action.ALL_APPS }
# am start -a android.intent.action.VIEW geo:0,0?q=shanghai
am start -a android.intent.action.VIEW geo:0,0?q=shanghai
Starting: Intent { action=android.intent.action.VIEW data=geo:0,0?q=shanghai }
2. adb mount ,push的使用
Android 的主要調(diào)試工具adb(Android debuging bridge),ddms是一個(gè)在adb基礎(chǔ)上的一個(gè)圖形化工具,
android面試調(diào)試技巧
,資料共享平臺(tái)
《android面試調(diào)試技巧》(http://www.msguai.com)。 這里主要講解Android adb,它是一個(gè)命令行工具。而ddms功能與adb相同,只是它有一個(gè)圖形化界面。對(duì)不喜歡命今操作方式的人來說是一個(gè)不錯(cuò)的選擇。這些命令在 Android sdk下的tools目錄下。這些命令在linux和window中都可運(yùn)行(1) 首先確定本機(jī)上有一個(gè)模擬器已啟動(dòng)。確定是否有模擬器已啟動(dòng)可以使用命令:
adb devices
List of devices attached
emulator-5554 device
emulator-5556 device
返回一個(gè)5554的模擬器。
(2) 給模擬器安裝一個(gè)應(yīng)用程序,
【android面試調(diào)試技巧】相關(guān)文章:
求職面試的面試技巧10-05
什么是面試技巧10-05
揭秘面試技巧06-23
面試技巧淺談09-25
實(shí)用的面試技巧10-30
面試文員技巧10-11
面試語言技巧07-24
面試態(tài)度技巧04-13
面試結(jié)束的技巧08-17
企業(yè)面試技巧10-07