am: add Korean translation (#10694)

pull/23/head
ECMs 2023-09-20 12:29:33 +09:00 committed by GitHub
parent da81653c43
commit e0e7829792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages.ko/android/am.md Normal file
View 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}}`