※ 로그 사용법
- 로그창에서 내가 원하는 로그만 볼 수 있다.
특히 특정기능에 대한 로그만 알고싶다면 로그창에서 새로운 로그 태그를 만들어 놓으면
소스에서 로그 태그의 이름만 맞춰 준다면 LogCat창에서 해당 태그의 로그만 볼 수 있다. 
MainActivity
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
Log.i("MainActivity", "onCreate() 생명주기 test");
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onStart() {
// TODO Auto-generated method stub
Log.i("MainActivity", "onStart()");
super.onResume();
}
@Override
protected void onResume() {
// TODO Auto-generated method stub
Log.i("MainActivity", "onResume()");
super.onResume();
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
Log.i("MainActivity", "onPause()");
super.onPause();
}
@Override
protected void onStop() {
// TODO Auto-generated method stub
Log.i("MainActivity", "onStop()");
super.onStop();
}
@Override
protected void onDestroy() {
// TODO Auto-generated method stub
Log.i("MainActivity", "onDestroy()");
super.onDestroy();
}
}
Activity_main
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ll"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.androidex.MainActivity" >
<TextView
android:id="@+id/bt_move_activity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Life Cycle Test"
/>
</LinearLayout>
'플밍 is 뭔들 > 안드로이드_인강' 카테고리의 다른 글
09-1. 프레그먼트 (0) | 2016.11.27 |
---|---|
08-1. 인텐트 (0) | 2016.11.27 |
07-1. 액티비티 (0) | 2016.11.27 |
06-2. 이벤트를 이용한 드로잉 (0) | 2016.11.27 |
06-1. 이벤트 & 리스너 (0) | 2016.11.27 |