1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 19:02:09 +02:00
tldr/pages.de/android/am.md
Vitor Henrique 006abfda34
pages*: sync https://developer.android.com more info links (#12288)
* pages*: sync https://developer.android.com more info links

* dalvikvm: fix wrong link
2024-02-22 17:53:50 +05:30

20 lines
582 B
Markdown

# am
> Androids Aktivitäten-Manager.
> Weitere Informationen: <https://developer.android.com/tools/adb#am>.
- Starte eine bestimmte Aktivität:
`am start -n {{com.android.settings/.Settings}}`
- Starte eine Aktivität und übergib ihr Daten:
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
- Starte eine Aktivität, auf die eine bestimmte Aktion und Kategorie zutrifft:
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
- Konvertiere ein bestimmtes Ziel in einen URI:
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`