UiAutomation.GetWindowContentFrameStats(Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient les statistiques d’image d’une fenêtre donnée.
[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
Paramètres
- windowId
- Int32
ID de fenêtre.
Retours
Statistiques de trame de fenêtre ou null si la fenêtre n’est pas présente.
- Attributs
Remarques
Obtient les statistiques d’image d’une fenêtre donnée. Ces statistiques contiennent des informations sur les images de contenu rendues les plus récentes.
Une utilisation classique nécessite d’effacer les statistiques de trame de fenêtre par le biais #clearWindowContentFrameStats(int)
d’une interaction avec l’interface utilisateur et enfin d’obtenir les statistiques de trame de fenêtre via l’appel de cette méthode.
// 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);
Documentation Java pour android.app.UiAutomation.getWindowContentFrameStats(int)
.
Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.