1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages.hi/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

894 B

am

एंड्रॉइड गतिविधि प्रबंधक। अधिक जानकारी: https://developer.android.com/tools/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}}