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

690 B

am

مدیر فعالیت های اندروید اطلاعات بیشتر: https://developer.android.com/tools/adb#am.

  • یک فعالیت خاص رو شروع کن :

am start -n {{com.android.settings/.Settings}}

  • یک فعالیت خاص رو شروع کن و داده به آن ارسال کن :

am start -a {{android.intent.action.VIEW}} -d {{tel:123}}

  • فعالیتی که با دسته بندی و عمل خاصی مطابقت داره رو شروع کن :

am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}

  • یک اینتنت رو به یک URI تبدیل میکنه :

am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}