am, cmd, dalvikvm, settings: add page (#5481)

This commit is contained in:
Pierre Rudloff
2021-03-25 22:57:15 +01:00
committed by GitHub
parent e7421cee13
commit 59ca98f7df
4 changed files with 62 additions and 0 deletions

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

@@ -0,0 +1,20 @@
# am
> Android activity manager.
> More information: <https://developer.android.com/studio/command-line/adb#am>.
- Start a specific activity:
`am start -n {{com.android.settings/.Settings}}`
- Start an activity and pass data to it:
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
- Start an activity matching a specific action and category:
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
- Convert an intent to an URI:
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`