perfsuite-android
perfsuite-android copied to clipboard
Add fragment frame metrics tracker
Summary
Frame Metric tracking for Fragment was missing, so this MR introduces FragmentFrameMetricsTracker
Structure
- Create the
FragmentFrameMetricsTrackerclass and extend it fromFragmentManager.FragmentLifecycleCallbacks - Implement the tracking logics. I borrowed the logics mostly from
ActivityFrameMetricsTracker - Create
MessageListFragmentand add recycler view. - To simulate the expensive operations, I've added random Thread.Sleep's to each item inflation in
MessageListAdapter