Capturer les écrans de l'UI Wear
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Wear OS propose plusieurs façons de capturer l'UI Wear OS :
-
Android Studio : utilisez Logcat pour effectuer des captures d'écran.
-
Application associée: utilisez l'accessoire connecté sur les Google Pixel Watch
capture d'écran.
- Enregistrement d'écran pour Wear OS : enregistrez une vidéo de l'écran.
Effectuer des captures d'écran dans Android Studio
La capture d'écran de l'interface utilisateur de votre application connectée à l'aide d'Android Studio est semblable à la capture d'écran sur mobile. Procédez comme suit :
- Ouvrez votre application dans Android Studio.
- Exécutez-la sur un appareil ou dans un émulateur.
- À partir de là, accédez à l'écran que vous souhaitez capturer.
- Ouvrez Logcat, puis cliquez sur l'icône de capture d'écran. Elle peut se trouver sous le menu à développer.
- Vous pouvez également sélectionner Frame Screenshot (Capture d'écran du frame), puis un chrome rond.
- Cliquez sur Enregistrer.
Effectuer des captures d'écran avec l'application associée
Pour prendre des captures d'écran d'une Google Pixel Watch, vous pouvez utiliser l'application associée Google Pixel Watch. Procédez comme suit:
- Dans l'interface utilisateur, recherchez l'écran que vous souhaitez capturer.
- Sur le téléphone Android, activez les options pour les développeurs, si ce n'est pas déjà fait. Pour ce faire, sélectionnez Settings > About phone (Paramètres > À propos du téléphone), puis appuyez sur Build number (Numéro de version) sept fois.
- Ouvrez l'application Wear OS sur votre téléphone.
- Appuyez sur le bouton à trois points dans l'angle supérieur droit pour ouvrir le menu.
- Appuyez sur Take wearable screenshot (Capture d'écran accessoire connecté). Le message suivant s'affiche : Screenshot request sent (Demande de capture d'écran envoyée). Vous recevrez ensuite les notifications suivantes : Ready to send watch screenshot (Prêt à envoyer capture d'écran prise sur la montre) et Tap to send (Appuyez pour envoyer).
- Appuyez sur la notification pour recevoir des options permettant d'envoyer ou de partager la capture d'écran via le Bluetooth, Gmail ou d'autres modes.
Utiliser l'enregistrement d'écran pour Wear OS
Si vous développez sur macOS, vous pouvez utiliser un projet GitHub, Android Tool for Mac, pour enregistrer une vidéo à partir de votre appareil Wear OS.
Vous pouvez également enregistrer une vidéo à partir de votre appareil Wear OS en procédant comme suit :
- Enregistrez les frames bruts sur la montre, comme indiqué ci-dessous :
adb shell screenrecord --time-limit 30 --output-format raw-frames --verbose /sdcard/video.raw
- Copiez le fichier brut sur votre ordinateur de développement, comme indiqué ci-dessous :
adb pull /sdcard/video.raw video.raw
- Utilisez
ffmpeg
pour convertir le fichier RAW au format MP4, comme indiqué ci-dessous :
ffmpeg -f rawvideo -vcodec rawvideo -s 400x400 -pix_fmt rgb24 -r 10 -i video.raw -an -c:v libx264 -pix_fmt yuv420p video.mp4
Remarque : Consultez le site Web FFmpeg pour obtenir les instructions de téléchargement et d'installation.
Le contenu et les exemples de code de cette page sont soumis aux licences décrites dans la Licence de contenu. Java et OpenJDK sont des marques ou des marques déposées d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[null,null,["Dernière mise à jour le 2025/07/26 (UTC)."],[],[],null,["# Capture Wear UI screens\n\nWear OS provides several ways to capture the Wear OS UI:\n\n- **Android Studio**: use Logcat to take screenshots.\n- **Companion app** : on Google Pixel Watch devices, use the **Take wearable\n screenshot** option to take screenshots.\n- **Screen record for Wear OS**: record a video of the screen.\n\nCapture screenshots in Android Studio\n-------------------------------------\n\n\nCapturing screenshots of your wearable app's UI using Android Studio is similar to capturing\nscreenshots on mobile. Use the following steps:\n\n1. Open your app in [Android Studio](/studio).\n2. Run your app on a device or an emulator.\n3. Navigate to the screen you want to capture on the device or in the emulator.\n4. Open [Logcat](/studio/debug/am-logcat) and click the screenshot icon. It might be beneath the overflow menu.\n5. Optionally, select **Frame Screenshot** and select a round chrome.\n6. Click **Save**.\n\nCapture screenshots with the companion app\n------------------------------------------\n\n\nTo take screenshots of a Google Pixel Watch device, you can use the [Google Pixel Watch](https://play.google.com/store/apps/details?id=com.google.android.apps.wear.companion) companion app. Follow these steps:\n\n1. On your UI, find the screen that you want to capture.\n2. On the Android phone, enable **Developer options** , if you haven't already, by going to **Settings \\\u003e About phone** , and tapping **Build number** *seven times.*\n3. Open the Wear companion app on your phone.\n4. Tap the three dot overflow button in the upper-righthand corner to open the menu.\n5. Tap **Take wearable screenshot** . The following message appears: **Screenshot request sent** . Then you receive the following notifications: **Ready to send watch screenshot** and **tap to send**.\n6. Tap the notification to receive options for sending or sharing the screenshot using Bluetooth, Gmail, or other options.\n\nUse screen record for Wear OS\n-----------------------------\n\n\nIf you develop on macOS, you can use the GitHub project\n[Android tool for Mac](https://github.com/mortenjust/androidtool-mac/blob/master/README.md) to record a video from your Wear OS device.\n\n\nAlternatively, record a video from your Wear OS device using the following steps:\n\n1. Record raw frames on the watch, as shown in the following: \n\n ```text\n adb shell screenrecord --time-limit 30 --output-format raw-frames --verbose /sdcard/video.raw\n ```\n2. Copy the raw file to your development machine, as shown in the following: \n\n ```text\n adb pull /sdcard/video.raw video.raw\n ```\n3. Use `ffmpeg` to convert the raw file to MP4, as shown in the following: \n\n ```scdoc\n ffmpeg -f rawvideo -vcodec rawvideo -s 400x400 -pix_fmt rgb24 -r 10 -i video.raw -an -c:v libx264 -pix_fmt yuv420p video.mp4\n ```\n\n\n**Note:** Refer to the\n[FFmpeg website](https://www.ffmpeg.org/download.html) for download\nand installation instructions."]]