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
視窗識別碼。
傳回
視窗框架統計數據,如果視窗不存在,則為 Null。
- 屬性
備註
取得指定視窗的框架統計數據。 這些統計數據包含最近轉譯之內容框架的相關信息。
一般用法需要透過 #clearWindowContentFrameStats(int)
清除視窗框架統計數據,然後與UI互動,最後透過呼叫此方法取得視窗框架統計數據。
// 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 屬性授權中所述的詞彙使用。