2013年6月4日 星期二

[Android] Log的使用方法

http://blog.yam.com/bibby1101/article/46679044

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錯誤,這裡僅顯示紅色的錯誤信息,這些錯誤就需要我們認真的分析,查看棧的信息了。

package com.android.test;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;

public class LogDemo extends Activity {
 
 private static final String ACTIVITY_TAG="LogDemo";
 private Button bt;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        //通过findViewById找到Button资源
        bt = (Button)findViewById(R.id.bt);

        //增加事件响应
        bt.setOnClickListener(new Button.OnClickListener(){
           @Override
           public void onClick(View v) {
             Log.v(LogDemo.ACTIVITY_TAG, "This is Verbose.");
             Log.d(LogDemo.ACTIVITY_TAG, "This is Debug.");
             Log.i(LogDemo.ACTIVITY_TAG, "This is Information");
             Log.w(LogDemo.ACTIVITY_TAG, "This is Warnning.");
             Log.e(LogDemo.ACTIVITY_TAG, "This is Error.");

          }
        
        });
    }
       
}


執行模擬器 >> DDMS模式 >> LogCat
 

沒有留言:

張貼留言