Android程式調試

來源:互聯網
上載者:User

標籤:

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程式調試

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.