adb shell
명령 으로 브라우저를 시작 하고 특정 웹 페이지를 열려면 어떻게해야합니까?
무슨 뜻인지 잘 모르겠습니다. 브라우저 인 텐트를 시작한다는 뜻인가요?
—
BeRecursive 2010-08-18
adb shell
명령 으로 브라우저를 시작 하고 특정 웹 페이지를 열려면 어떻게해야합니까?
답변:
이 명령을 실행하면 Android에서 웹 브라우저가 시작됩니다.
adb shell am start -a android.intent.action.VIEW -d http://www.stackoverflow.com
URL이 기호가 많은 경우 공격적으로 인용해야합니다.
adb shell am start -a android.intent.action.VIEW -d 'http://stackoverflow.com/?uid=isme\&debug=true'
특별히 Chrome을 시작하려는 경우
adb shell am start \
-n com.android.chrome/com.google.android.apps.chrome.Main \
-a android.intent.action.VIEW -d 'file:///sdcard/lazer.html'
또한 다음을 통해 Chrome에 sdcard 액세스 권한을 부여하십시오.
adb shell pm grant com.android.chrome android.permission.READ_EXTERNAL_STORAGE
Chrome 카나리아 버전을 사용하는 경우 com.android.chrome을 com.chrome.canary로 바꿉니다.