tldr/pages.uk/android/am.md

21 lines
719 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# am
> Менеджер активності Android.
> Більше інформації: <https://developer.android.com/studio/command-line/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}}`
- Перетворити значення в посилання:
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`