編輯:高級開發
android 是一款開源手機操作系統。大家可以在模擬器的幫助下對這一操作系統進行相應的編寫,一滿足自己的特定需求。android程序下用System已經是失效了(起碼我用是失效了的),那麼如何實現android調試程序呢?
第一種是用Debug,設個斷點就可以跟蹤,但是我覺得不爽,我用System.out用慣了,不用System.out也可以用Log的。
第二種就是我要介紹的Log,看了別人介紹的方法之後,自己親身試驗了再寫上來的哦~。首先簡單介紹一下Android,android實際上應該算是一種Linux移動平台的另一個版本(我對android研究不深,我就是這麼認為的),那麼既然是Linux就必定會用到命令。那麼如何用命令運行程序呢?用adb命令!鍵入“cmd”,再鍵入“adb shell”,出現了個“#”號,恭喜恭喜,你可以使用命令來控制android了。
運行“am -help”,可以查看“am”命令的幫助信息,試試運行“am start -n com.google.android.browser/com.google.android.browser.BrowserActivity”看看?呵呵,在模擬器裡面可以看到運行了浏覽器,哈哈,android調試程序就是這麼簡單(簡單個P,為了找這個東西花了我好久的時間)。
還有:
- //運行浏覽器,打開中華網
- # am start -a android.intent.action.VIEW -d http://www.china.com
- am start -a android.intent.action.VIEW -d http://www.china.com
- Starting: Intent { action=android.intent.action.
VIEW data=http://www.china.com }
- //撥打電話,號碼是123456789
- # am start -a android.intent.action.CALL -d tel:123456789
- am start -a android.intent.action.CALL -d tel:123456789
- Starting: Intent { action=android.intent.action.CALL
data=tel:123456789 }
- # am start -a android.intent.action.ALL_APPS
- am start -a android.intent.action.ALL_APPS
- Starting: Intent { action=android.intent.action.ALL_APPS }
- //google地圖,到shanghai這個點包(注:點包為方言,就是地方的意思)
- # 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 }
好了,簡單的介紹了一下Android調試程序中使用命令,然後如何查看輸出語句呢?在Android中可以使用Log類,Log類在android.util包中。Log 類提供了若干靜態方法 :
- Log.v(String tag, String msg);
- Log.d(String tag, String msg);
- Log.i(String tag, String msg);
- Log.w(String tag, String msg);
- Log.e(String tag, String msg);
分別對應 Verbose,Debug,Info,Warning,Error。
tag是一個標識,可以是任意字符串,通常可以使用類名+方法名, 主要是用來在查看日志時提供一個篩選條件.
程序運行後 並不會在 ide的控制台內輸出任何信息,那麼如何查看日志輸出?使用"adb logcat" 命令:
- adb logcat
當執行 adb logcat 後會以tail方式實時顯示出所有的日志信息.
這時候我們通常需要對信息進行過濾,來顯示我們需要的信息, 這時候我們指定的 tag就派上了用場.
- adb logcat -s Myandroid:I
解釋:只顯示tag為Myandroid,級別為I或級別高於I(Warning,Error)的日志信息。
還有一種更好的方法,如果你的IDE用的是Eclipse的話,在show vIEw中選擇Locat就可以直接看到輸出了。
好了,自己可以來實現一下android調試程序。
很多人對android2.0已經十分期待了,鑒於強大的功能性以及快速。android未來的市場將是十分廣闊的。搭載Android2.0源碼的摩托羅拉Droid手機已經上
android平台的項目目前正在從手機運營商、手機廠商、開發者和消費者那裡獲得大力的支持,在這期間,很有可能會迎來 android程序的大爆發,畢竟這個系統太強大了。一
我們已經介紹了android用戶界面設計模板Dashboard,其實在Dashboard上Andriod用戶界面設計所制作的最初版本為OmniGraffle模板,現在已
我們向很多朋友介紹過android特有的虛擬機:Dalvik虛擬機工作原理介紹。android各個應用在運行時的進程管理和內存管理都是相對獨立的,android應用程序