adb shell
コマンドを使用してブラウザを起動し、特定のWebページを開くにはどうすればよいですか?
意味がわかりません。ブラウザのインテントを開始するという意味ですか?
—
BeRecursive 2010
adb shell
コマンドを使用してブラウザを起動し、特定のWebページを開くにはどうすればよいですか?
回答:
このコマンドを実行すると、AndroidでWebブラウザが起動します。
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にSDカードへのアクセスを許可します
adb shell pm grant com.android.chrome android.permission.READ_EXTERNAL_STORAGE
Chromeカナリアバージョンを使用している場合は、com.android.chromeをcom.chrome.canaryと交換します。