Chinaunix首页 | 论坛 | 博客
  • 博客访问: 549034
  • 博文数量: 185
  • 博客积分: 4031
  • 博客等级: 上校
  • 技术积分: 1591
  • 用 户 组: 普通用户
  • 注册时间: 2009-05-27 19:45
文章分类

全部博文(185)

文章存档

2011年(14)

2010年(63)

2009年(108)

我的朋友

分类:

2010-11-14 18:33:34

进入shell
引用
C:\Documents and Settings\mawenjian>adb shell

看一下命令的帮助
引用

# am -help
am -help
Error: Unknown command: -help
usage: am [start|instrument]
       am start [-a ] [-d ] [-t ]
                [-c [-c ] ...]
                [-e [-e ...]
                [-n ] [-D] []
       am instrument [-e ] [-p ]
                [-w]

好了,试一下启动浏览器
引用
# am start -n com.google.android.browser/com.google.android.browser.BrowserActivity
am start -n com.google.android.browser/com.google.android.browser.BrowserActivity
Starting: Intent { comp={com.google.android.browser/com.google.android.browser.BrowserActivity} }

ok,成功了
大家试试下面的命令吧:
引用

# am start -a android.intent.action.VIEW -d
am start -a android.intent.action.VIEW -d
Starting: Intent { action=android.intent.action.VIEW data= }

# am start -a android.intent.action.CALL -d tel:88888888
am start -a android.intent.action.CALL -d tel:88888888
Starting: Intent { action=android.intent.action.CALL data=tel:88888888 }

# am start -a android.intent.action.ALL_APPS
am start -a android.intent.action.ALL_APPS
Starting: Intent { action=android.intent.action.ALL_APPS }

# am start -a android.intent.action.VIEW geo:0,0?q=shanghai
am start -a android.intent.action.VIEW geo:0,0?q=shanghai
Starting: Intent { action=android.intent.action.VIEW data=geo:0,0?q=shanghai }
阅读(882) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~