[Android]使用 Logcat 來幫忙除錯
Android studio 提供了 Logcat 這個工具,讓我們可以觀察APP的執行過程,幫助我們除錯。在底下的影片中,將說明 logcat 的使用方式,以及如何使用 logcat 來幫我們除錯。
底下是主畫面的程式碼
底下是主畫面的 layout 檔
底下是主畫面的程式碼
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.justim.myapplication; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.view.View; | |
import android.widget.EditText; | |
import android.widget.TextView; | |
public class MainActivity extends AppCompatActivity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
Log.d("MainActivity", "in onCreate"); | |
} | |
public void showMsg(View view) { | |
EditText etName = (EditText)findViewById(R.id.etName); | |
String msg = "Hello " + etName.getText().toString(); | |
TextView tvMsg = (TextView)findViewById(R.id.textView); | |
Log.d("MainActivity", msg); | |
tvMsg.setText(msg); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:id="@+id/activity_main" | |
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.justim.myapplication.MainActivity"> | |
<EditText | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:inputType="textPersonName" | |
android:text="Name" | |
android:ems="10" | |
android:id="@+id/etName" | |
android:layout_alignParentTop="true" | |
android:layout_alignParentLeft="true" | |
android:layout_alignParentStart="true" /> | |
<Button | |
android:text="Button" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_below="@+id/etName" | |
android:layout_alignParentLeft="true" | |
android:layout_alignParentStart="true" | |
android:layout_marginTop="16dp" | |
android:id="@+id/btnShow" | |
android:onClick="showMsg" /> | |
<TextView | |
android:text="TextView" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_below="@+id/btnShow" | |
android:layout_alignParentLeft="true" | |
android:layout_alignParentStart="true" | |
android:layout_marginTop="32dp" | |
android:id="@+id/textView" /> | |
</RelativeLayout> |
留言
張貼留言