學習Android-2024-08

平凡力量發表於2024-08-02

學習Android-2024-08-01

今天內容沒有具體在程式中驗證,可能存在問題。明天驗證。

1.列印日誌

1.1共5個級別,Log.e、Log.w、Log.i、Log.d、Log.v,重要性依次降低。例如Log.v會看到前面Log.e、Log.w等所有的資訊。而Log.e只會看到Log.e的資訊。

1.2輸出時打的tag,利於在控制檯進行搜尋。

// 錯誤資訊,第一個引數是tag名,即標記名。
Log.e("errorTag", "error occured");
// 警告資訊
Log.w("warnTag", "warn occured");
// 一般資訊
Log.i("infoTag", "sample info to show");
// 除錯資訊
Log.d("debugTag", "onCreate() method run.");
// 冗餘資訊
Log.v("notImportantTag", "not important message to show");

相關文章