Files
tldr/pages.uk/android/am.md
Bohdan Karashchuk ae66fa6d6f android/*: add Ukrainian translation (#11317)
* android/*: add Ukrainian translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-10-28 13:46:11 +05:30

21 lines
719 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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}}`