UiAutomation.GetWindowContentFrameStats(Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 창에 대한 프레임 통계를 가져옵니다.
[Android.Runtime.Register("getWindowContentFrameStats", "(I)Landroid/view/WindowContentFrameStats;", "")]
public Android.Views.WindowContentFrameStats? GetWindowContentFrameStats (int windowId);
[<Android.Runtime.Register("getWindowContentFrameStats", "(I)Landroid/view/WindowContentFrameStats;", "")>]
member this.GetWindowContentFrameStats : int -> Android.Views.WindowContentFrameStats
매개 변수
- windowId
- Int32
창 ID입니다.
반환
창 프레임 통계이거나 창이 없는 경우 null입니다.
- 특성
설명
지정된 창에 대한 프레임 통계를 가져옵니다. 이러한 통계에는 가장 최근에 렌더링된 콘텐츠 프레임에 대한 정보가 포함됩니다.
일반적인 사용을 위해서는 UI와의 상호 작용을 통해 #clearWindowContentFrameStats(int)
창 프레임 통계를 지우고 마지막으로 이 메서드를 호출하여 창 프레임 통계를 가져오도록 해야 합니다.
// Assume we have at least one window.
final int windowId = getWindows().get(0).getId();
// Start with a clean slate.
uiAutimation.clearWindowContentFrameStats(windowId);
// Do stuff with the UI.
// Get the frame statistics.
WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
에 대한 android.app.UiAutomation.getWindowContentFrameStats(int)
Java 설명서
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.