6.1 Overview of Android Monitor in Android Studio

Android Monitor helps you monitor the performance of your application to help you optimize, debug, and improve reasonably. The following functions:
1. Log messages, system-defined or developer-defined.
2. Memory, CPU and GPU usage.
3. Network conditions (can only be used in physical devices)

Android Monitor provides a variety of tools to view real-time information of applications. When your run, it will capture the data and save it to a file, you can analyze it in multiple views. You can also take screenshots and videos while the app is running.

Log message

. View Log messages, real-time or historical data. Can help you debug. (Logcat Monitor).

Performance monitoring

You can view your application visually. Tools included:
1. Memory Monitor
calculates memory usage, finds unused objects, local memory leaks, and memory usage of connected devices.
2. CPU Monitor
displays the CPU usage in real time.
3. GPU Monitor
visually shows the time it takes to render a UI form.
4. Network Monitor
analyzes network requests, including how and when your application delivers data.

data analysis

Android Monitor allows you to capture multiple types of data in your application when running, and saved to a file, you can easily view:
1, HPROF view and analyze
display classes, instances of each class
2, Allocation Tracker
capture your Data distribution for your application.
3. Method Trace
4. System information

Screenshots and videos

As explained in the previous chapter

Author: Song Zhihui
personal micro-blog: Click to enter

Guess you like

Origin blog.csdn.net/song19891121/article/details/51800226