將已經存在的工程導入到eclipse步驟: ①:首先複製當前工程所在的路徑。 ②:然後在eclipse,右鍵->Import->General->Existing Projects into Workspace->將複製的路徑黏貼進去->Browser->Copy projects into wor ...
將已經存在的工程導入到eclipse步驟:
①:首先複製當前工程所在的路徑。
②:然後在eclipse,右鍵->Import->General->Existing Projects into Workspace->將複製的路徑黏貼進去->Browser->Copy projects into workspace->finish。
1 package com.itheima.logcat;
2
3 import android.os.Bundle;
4 import android.app.Activity;
5 import android.util.Log;
6 import android.view.Menu;
7
8 public class MainActivity extends Activity {
9
10 private static final String tag = "MainActivity";
11
12 @Override
13 protected void onCreate(Bundle savedInstanceState) {
14 super.onCreate(savedInstanceState);
15 setContentView(R.layout.activity_main);
16
17 Log.v(tag, "我是v級別"); 對應的是藍色
18 Log.i(tag, "我是i級別"); 綠色
19 Log.d(tag, "我是d級別"); 黑色
20 Log.w(tag, "我是w級別"); 黃色
21 Log.e(tag, "我是e級別"); 紅色
22 }
23
24 @Override
25 public boolean onCreateOptionsMenu(Menu menu) {
26 // Inflate the menu; this adds items to the action bar if it is present.
27 getMenuInflater().inflate(R.menu.main, menu);
28 return true;
29 }
30
31 }
解讀 1 Log.v(tag, "我是v級別");
tag Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.(用於標識日誌消息的源。它通常標識日誌調用發生的類或活動。)
msg The message you would like logged.(您希望記錄的消息。)
如何快速的過濾出我自己列印的日誌信息呢?
可以通過左邊的Filters過濾器。 通過Tag來過濾。