1. 程式人生 > >Log圖文詳解(Log.v,Log.d,Log.i,Log.w,Log.e)的用法

Log圖文詳解(Log.v,Log.d,Log.i,Log.w,Log.e)的用法



在除錯程式碼的時候我們需要檢視除錯資訊,那我們就需要用Android Log類。

android.util.Log常用的方法有以下5個:Log.v()Log.d()Log.i()Log.w()以及Log.e()。根據首字母對應VERBOSEDEBUG,INFO,WARNERROR

1、Log.v 的除錯顏色為黑色的,任何訊息都會輸出,這裡的v代表verbose囉嗦的意思,平時使用就是Log.v("","");

2、Log.d的輸出顏色是藍色的,僅輸出debug除錯的意思,但他會輸出上層的資訊,過濾起來可以通過DDMS的Logcat標籤來選擇.

3、Log.i的輸出為綠色,一般提示性的訊息information,它不會輸出Log.v和Log.d的資訊,但會顯示i、w和e的資訊

4、Log.w的意思為橙色,可以看作為warning警告,一般需要我們注意優化Android程式碼,同時選擇它後還會輸出Log.e的資訊。

5、Log.e為紅色,可以想到error錯誤,這裡僅顯示紅色的錯誤資訊,這些錯誤就需要我們認真的分析,檢視棧的資訊了。

注意:不同的列印方法在使用時都是某個方法帶上(String tag, String msg)引數,tag表示的是列印資訊的標籤,msg表示的是需要列印的資訊。

下面是我做的一個簡單的LogDemo(Step By Step):

Step 1:準備工作(開啟LogCat視窗).

 啟動Eclipse,在Window->Show View

會出來一個對話方塊,當我們點選Ok按鈕時,會在控制檯窗口出現LogCat視窗.如下圖:

Step 2:新建一個Android工程,命名為LogDemo.

Step 3:設計UI介面,我們在這裡就加了一個Button按鈕(點選按鈕出現Log日誌資訊).

Main.xml程式碼如下:

[xhtml] view plain copy print?
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:orientation
    ="vertical"
  4.     android:layout_width="fill_parent"
  5.     android:layout_height="fill_parent"
  6.     >
  7. <TextView
  8.     android:layout_width="fill_parent"
  9.     android:layout_height="wrap_content"
  10.     android:text="@string/hello"
  11.     />
  12. <Button
  13.  android:id="@+id/bt"
  14.  android:layout_width="wrap_content"
  15.  android:layout_height="wrap_content"
  16.  android:text="Presse Me Look Log"
  17. />
  18. </LinearLayout>

Step 4:設計主類LogDemo.Java,程式碼如下:

[java] view plain copy print?
  1. publicclass LogDemo extends Activity {  
  2.  privatestaticfinal String ACTIVITY_TAG="LogDemo";  
  3.  private Button bt;  
  4.     publicvoid onCreate(Bundle savedInstanceState) {  
  5.         super.onCreate(savedInstanceState);  
  6.         setContentView(R.layout.main);  
  7.         //通過findViewById找到Button資源
  8.         bt = (Button)findViewById(R.id.bt);  
  9.         //增加事件響應
  10.         bt.setOnClickListener(new Button.OnClickListener(){  
  11.     @Override
  12.    publicvoid onClick(View v) {  
  13.     Log.v(LogDemo.ACTIVITY_TAG, "This is Verbose.");  
  14.     Log.d(LogDemo.ACTIVITY_TAG, "This is Debug.");  
  15.     Log.i(LogDemo.ACTIVITY_TAG, "This is Information");  
  16.     Log.w(LogDemo.ACTIVITY_TAG, "This is Warnning.");  
  17.     Log.e(LogDemo.ACTIVITY_TAG, "This is Error.");  
  18.    }  
  19.         });  
  20.     }  
  21. }  

Step 5:執行LogDemo工程,效果如下:

當我們點選按鈕時,會觸發事件,在Logcat視窗下有如下效果:

本文轉自http://blog.csdn.NET/Android_Tutor/archive/2009/12/26/5081713.aspx