mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 06:22:07 +02:00
am: add Korean translation (#10694)
This commit is contained in:
parent
da81653c43
commit
e0e7829792
1 changed files with 20 additions and 0 deletions
20
pages.ko/android/am.md
Normal file
20
pages.ko/android/am.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# am
|
||||
|
||||
> Android 활동 관리자.
|
||||
> 더 많은 정보: <https://developer.android.com/studio/command-line/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}}`
|
||||
|
||||
- intent를 URI로 변환:
|
||||
|
||||
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`
|
Loading…
Add table
Reference in a new issue