標籤:
1. 使用Log.d方法輸出Debug日誌資訊。
Log.d方法用來輸出DEBUG故障日誌資訊,該方法有兩種重載形式,其中開發人員經常用到的重載形式文法如下:
public static int d(String tag, String msg)
- tag:String字串,用來標識日誌資訊,它通常指定為可能出現Debug的類或者Activity的名稱。
- msg:String字串,表示要輸出的字串資訊。
下面的執行個體,單擊Android介面中的Button按鈕,將會在LogCat管理器中看到Debug日誌資訊。
1. 修改建立項目下的res/layout目錄下的布局檔案main.xml,在其中添加一個Button組件,主要代碼如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.example.tiaoshi.MainActivity" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" /> <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Debug日誌" /></LinearLayout>
2. 開啟Activity檔案,首先根據id擷取布局檔案中的Button組件,然後為該組件設定單擊監聽事件,在監聽事件中,使用Log.d方法輸出Debug日誌資訊,代碼如下:
Button btn = null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); this.btn = (Button) findViewById(R.id.btn); //擷取Button組件 btn.setOnClickListener(new OnClickListener(){ //設定監聽事件 @Override public void onClick(View arg0) { Log.d("DEBUG", "Debug日誌資訊"); //輸出Debug日誌資訊 } }); }
3. 結果如所示
2. 使用Log.e方法輸出錯誤資訊
Log.e方法用來輸出ERROR錯誤記錄檔資訊,該方法有兩種重載形式,其中開發人員經常用到的重載形式文法如下:
public static int e(String tag, String msg)
- tag:String字串,用來標識日誌資訊,它通常指定為可能出現錯誤的類或者Activity的名稱。
- msg:String字串,表示要輸出的字串資訊。
方法同上。
3. 使用Log.i方法輸出程式日誌資訊
Log.i方法用來輸出INFO程式日誌資訊,該方法有兩種重載形式,其中開發人員經常用到的重載形式文法如下:
public static int i(String tag, String msg)
- tag:String字串,用來標識日誌資訊,它通常指定為類或者Activity的名稱。
- msg:String字串,表示要輸出的字串資訊。
4. 使用Log.v方法輸出冗餘日誌資訊
Log.v方法用來輸出VERBOSE冗餘日誌資訊,該方法有兩種重載形式,其中開發人員經常用到的重載形式文法如下:
public static int v(String tag, String msg)
- tag:String字串,用來標識日誌資訊,它通常指定為可能出現冗餘的類或者Activity的名稱。
- msg:String字串,表示要輸出的字串資訊。
5. 使用Log.w方法輸出警告日誌資訊
Log.w方法用來輸出WARN警告日誌資訊,該方法有3種重載形式,其中開發人員經常用到的重載形式文法如下:
public static int w(String tag, String msg)
- tag:String字串,用來標識日誌資訊,它通常指定為可能出現警告的類或者Activity的名稱。
- msg:String字串,表示要輸出的字串資訊。
Android程式調試