chapter 7 - debugging part 1

6
Debugging Part 1

Upload: sittiphol-phanvilai

Post on 11-Apr-2017

114 views

Category:

Education


0 download

TRANSCRIPT

Page 1: Chapter 7 - Debugging part 1

Debugging Part 1

Page 2: Chapter 7 - Debugging part 1

Android Debugging Bridge (ADB)

a command line tool available in Android SDK using to connect between a device and the development tools

adb

Page 3: Chapter 7 - Debugging part 1

Log

•  Fire out something to logging system •  There are 5 types of logging

• v(String, String) (verbose) • d(String, String) (debug) • i(String, String) (information) • w(String, String) (warning) • e(String, String) (error)

Logging System

Page 4: Chapter 7 - Debugging part 1

Logcat

= cat of log (catenate)

Logging System

logcat

Page 5: Chapter 7 - Debugging part 1

Log & Logcat Example

Page 6: Chapter 7 - Debugging part 1

Toast

Toast.makeText(this, “MyFragmentC.onDestroyView()”, Toast.LENGTH_SHORT) .show();