mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 12:22:10 +02:00

* pages/*: update links and more info link script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: reformat code * ax-webapp: fix link * curl: fix false positive Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
20 lines
908 B
Markdown
20 lines
908 B
Markdown
# am
|
|
|
|
> एंड्रॉइड गतिविधि प्रबंधक।
|
|
> अधिक जानकारी: <https://developer.android.com/studio/command-line/adb#am>।
|
|
|
|
- एक विशिष्ट गतिविधि प्रारंभ करें:
|
|
|
|
`am start -n {{com.android.settings/.Settings}}`
|
|
|
|
- एक गतिविधि शुरू करें और उसमें डेटा[d] पास करें:
|
|
|
|
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
|
|
|
|
- किसी विशिष्ट क्रिया और श्रेणी[c] से मेल खाती गतिविधि प्रारंभ करें:
|
|
|
|
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
|
|
|
|
- एक उद्देश्य को यूआरआई में बदलें:
|
|
|
|
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`
|