Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to display a local image on my Samsung Note 3 via adb shell.
$adb shell am start -a android.intent.action.VIEW -n com.android.browser/.BrowserActivity -d file:///storage/emulated/legacy/Pictures/red.png $
this code works for my another display device, but not works for my Note 3, i get this error
Starting: Intent { act=android.intent.action.MAIN cmp=com.android.browser/.BrowserActivity } Error type 3 Error: Activity class {com.android.browser/com.android.browser.BrowserActivity} does not exist. i tried also this code
$adb shell am start -t image/* -d file:///storage/emulated/legacy/Pictures/red.png $

but still doesnt work. Can anybody help me, really appreciate for that!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
879 views
Welcome To Ask or Share your Answers For Others

1 Answer

Solved myself:

adb shell am start -d file:///storage/emulated/legacy/Pictures/tiger.jpg -t image/jpg -a android.intent.action.VIEW


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...