Added in API level 24

Window.OnFrameMetricsAvailableListener


public static interface Window.OnFrameMetricsAvailableListener



Callback for clients that want frame timing information for each frame rendered by the Window.

Summary

Public methods

abstract void onFrameMetricsAvailable(Window window, FrameMetrics frameMetrics, int dropCountSinceLastInvocation)

Called when information is available for the previously rendered frame.

Public methods

onFrameMetricsAvailable

Added in API level 24
public abstract void onFrameMetricsAvailable (Window window, 
                FrameMetrics frameMetrics, 
                int dropCountSinceLastInvocation)

Called when information is available for the previously rendered frame. Reports can be dropped if this callback takes too long to execute, as the report producer cannot wait for the consumer to complete. It is highly recommended that clients copy the passed in FrameMetrics via FrameMetrics.FrameMetrics(FrameMetrics) within this method and defer additional computation or storage to another thread to avoid unnecessarily dropping reports.