通过shell脚本启动Android应用程序?


14

是否可以从Android中的命令行启动实际的Android应用程序?例如,假设我只是想开始/将日历放在最前面。有什么办法可以做到:

startapp com.google.calendar

Answers:


11

我相信使用adb可能:

am [start|instrument]
am start [-a <action>] [-d <data_uri>] [-t <mime_type>]
[-c <category> [-c <category>] ...]
[-e <extra_key> <extra_value> [-e <extra_key> <extra_value> ...]
[-n <component>] [-D] [<uri>]
am instrument [-e <arg_name> <arg_value>] [-p <prof_file>]
[-w] <component>

例如,我们有清单如下的android程序:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.app1.android.xtract">
  <application android:icon="@drawable/icon">
   <activity class=".Contact" android:label="@string/app_name">
    <intent-filter>
    <action android:value="android.intent.action.MAIN" />
    <category android:value="android.intent.category.LAUNCHER" />
   </intent-filter>
  </activity>
 </application>
.
.
</manifest>

要像这样运行代码发布命令(一行):

am start -a android.intent.action.MAIN -n com.app1.android.xtract/com.app1.android.xtract.Contact

不幸的是,对于我来说,它不能通过SSH起作用,但是在运行时它可以起作用,adb因此,我将为您提供:)
Naftuli Kay 2011年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.