am, [[: add Dutch translation (#10204)

* am: add Dutch translation

* [[: add Dutch translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Jen
2023-05-17 02:57:11 +01:00
committed by GitHub
parent 0552a9d194
commit b117200254
2 changed files with 57 additions and 0 deletions

20
pages.nl/android/am.md Normal file
View File

@@ -0,0 +1,20 @@
# am
> Android-activiteitenmanager.
> Meer informatie: <https://developer.android.com/studio/command-line/adb#am>.
- Start een specifieke activiteit:
`am start -n {{com.android.settings/.Settings}}`
- Start een activiteit en geef er gegevens aan door:
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
- Start een activiteit die overeenkomt met een specifieke actie en categorie:
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
- Converteer een intentie naar een URI:
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`