2022-10-10 02:40:11 +01:00
|
|
|
# am
|
|
|
|
|
|
|
|
> Menedżer aktywności Android.
|
2024-02-22 12:23:50 +00:00
|
|
|
> Więcej informacji: <https://developer.android.com/tools/adb#am>.
|
2022-10-10 02:40:11 +01:00
|
|
|
|
|
|
|
- Rozpocznij konkretną aktywność:
|
|
|
|
|
|
|
|
`am start -n {{com.android.settings/.Settings}}`
|
|
|
|
|
|
|
|
- Rozpocznij aktywność i przekaż do niej dane:
|
|
|
|
|
|
|
|
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
|
|
|
|
|
|
|
|
- Rozpocznij aktywność dopasowaną do konkretnej akcji i kategorii:
|
|
|
|
|
|
|
|
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
|
|
|
|
|
|
|
|
- Konwertuj zamiar w URI:
|
|
|
|
|
|
|
|
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`
|