Wear UI 画面をキャプチャする
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Wear OS では、いくつかの方法で Wear OS UI をキャプチャできます。
-
Android Studio: Logcat を使用してスクリーンショットをキャプチャします。
-
コンパニオン アプリ: Google Pixel Watch デバイスで、Take ウェアラブル
スクリーンショット オプションを使用して、スクリーンショットを撮ることができます。
-
Wear OS のスクリーン レコード: 画面の動画を撮影します。
Android Studio でスクリーンショットをキャプチャする
Android Studio を使用してウェアラブル アプリの UI のスクリーンショットをキャプチャすることは、モバイルでスクリーンショットをキャプチャする場合と類似しています。次の操作を行います。
- Android Studio 内でアプリを開きます。
- デバイスまたはエミュレータでアプリを実行します。
- デバイスまたはエミュレータでキャプチャする画面に移動します。
- Logcat を開き、スクリーンショット アイコンをクリックします。オーバーフロー メニューの下に隠れている場合があります。
- 必要に応じて、[Frame Screenshot] を選択し、円形の Chrome を選択します。
- [保存] をクリックします。
コンパニオン アプリでスクリーンショットをキャプチャする
Google Pixel Watch デバイスのスクリーンショットを撮るには、Google Pixel Watch コンパニオン アプリを使用します。手順は次のとおりです。
- UI でキャプチャする画面を探します。
- Android スマートフォンで、[開発者向けオプション] が有効になっていない場合は有効にします([設定] > [デバイス情報] に移動して、[ビルド番号] を 7 回タップします)。
- スマートフォンで Wear コンパニオン アプリを開きます。
- 右上にあるオーバーフロー ボタン(3 つの点)をタップしてメニューを開きます。
- [ウェアラブルで画面ショットを撮る] をタップします。[スクリーンショットのリクエストを送信しました] というメッセージが表示されます。その後、[スマートウォッチのスクリーンショットを送信する準備ができました] と [タップして送信します] の各通知が届きます。
- 通知をタップすると、Bluetooth や Gmail などでスクリーンショットの送信や共有を行うためのオプションが表示されます。
Wear OS でスクリーン レコードを使用する
macOS で開発を行っている場合は、GitHub プロジェクトの Mac 向け Android ツールを使用して、Wear OS デバイスで動画を撮影できます。
または、次の手順で Wear OS デバイスから動画を録画します。
- スマートウォッチで RAW フレームを録画します。
adb shell screenrecord --time-limit 30 --output-format raw-frames --verbose /sdcard/video.raw
- RAW ファイルを開発マシンにコピーします。
adb pull /sdcard/video.raw video.raw
ffmpeg
を使用して RAW ファイルを MP4 に変換します。ffmpeg -f rawvideo -vcodec rawvideo -s 400x400 -pix_fmt rgb24 -r 10 -i video.raw -an -c:v libx264 -pix_fmt yuv420p video.mp4
注: ダウンロードとインストールの手順については、FFmpeg のウェブサイトをご覧ください。
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。Java および OpenJDK は Oracle および関連会社の商標または登録商標です。
最終更新日 2025-07-26 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 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."]]