mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-18 01:15:44 +02:00
21 lines
715 B
Markdown
21 lines
715 B
Markdown
![]() |
# 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}}`
|