1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages.ne/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

20 lines
966 B
Markdown

# 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] श्रेणीसँग (category) मेल खाने गतिविधि सुरु गर्नुहोस्:
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
- एउटा उद्देश्यलाई URI मा रूपान्तरण गर्नुहोस्:
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`