1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-12 00:35:45 +02:00
tldr/pages.ja/android/am.md
2025-08-03 22:18:24 +03:00

715 B

am

Android Activity Manager(アクティビティ マネージャー) もっと詳しく: https://developer.android.com/tools/adb#am

  • 指定したコンポーネントとパッケージ名でアクティビティを開始します:

am start -n {{com.android.settings/.Settings}}

  • インテントアクションを開始させ、データを渡します:

am start -a {{android.intent.action.VIEW}} -d {{tel:123}}

  • 指定したカテゴリーとマッチしたアクティビティを実行します:

am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}

  • インテントをURIに変換します:

am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}