1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 12:45:59 +02:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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}}`

15
pages/android/cmd.md Normal file
View file

@ -0,0 +1,15 @@
# cmd
> Android service manager.
- List every running service:
`cmd -l`
- Call a specific service:
`cmd {{alarm}}`
- Call a service with arguments:
`cmd {{vibrator}} {{vibrate 300}}`

View file

@ -0,0 +1,8 @@
# dalvikvm
> Android Java virtual machine.
> More information: <https://source.android.com/devices/tech/dalvik>.
- Start a Java program:
`dalvikvm -classpath {{path/to/file.jar}} {{classname}}`

19
pages/android/settings.md Normal file
View file

@ -0,0 +1,19 @@
# settings
> Get information about the Android OS.
- Display a list of settings in the `global` namespace:
`settings list {{global}}`
- Get the value of a specific setting:
`settings get {{global}} {{airplane_mode_on}}`
- Set the value of a setting:
`settings put {{system}} {{screen_brightness}} {{42}}`
- Delete a specific setting:
`settings delete {{secure}} {{screensaver_enabled}}`