phong
phong

Reputation: 310

Android studio - How to view which functions of which objects are being called?

Currently, I'm using Log.d in each function to see if it is being called. That's tiresome. Are there any Android Studio's built-in functionalities that allow me to do this?

Upvotes: 0

Views: 290

Answers (1)

SaravInfern
SaravInfern

Reputation: 3388

Use debugger with break points

enter image description here

enter image description here

Upvotes: 2

Related Questions