Android命令行启动程序正确使用技巧解析

Android应用程序的启动方法有许多种,大家可以通过我们以前介绍的快速启动方法来启动,同时还能通过本文介绍的Android命令行启动程序的具体方法来启动程序。在Android中,除了从界面上启动程序之外,还可以从命令行启动程序,使用的是命令行工具am.

Android命令行启动程序的方法为

# am start -n {包(package)名}/{包名}.{活动(activity)名称} 

启动的方法可以从每个应用的AndroidManifest.xml的文件中得到,以计算器(calculator)为例,它的

< ?xml version="1.0" encoding="utf-8"?> 



< manifest xmlns:android="http://schemas.android.com/apk/res/android" 




package="com.android.calculator2"> 




< application android:label="@string/app_name" 
android:icon="@drawable/icon"> 




< activity android:name="Calculator" 




android:theme="@android:style/Theme.Black"> 




< intent-filter> 




< action android:name="android.intent.action.MAIN" /> 




< category android:name="android.intent.category.LAUNCHER" /> 




< /intent-filter> 




< /activity> 




< /application> 




< /manifest> 

由此计算器(calculator)的启动方法为:

# am start -n com.android.calculator2/com.android.calculator2.Calculator 

对于HelloActivity这个示例工程,AndroidManifest.xml如下所示:

< ?xml version="1.0" encoding="utf-8"?> 



< manifest xmlns:android="http://schemas.android.com/apk/res/android" 




package="com.example.android.helloactivity"> 




< application android:label="Hello, Activity!"> 




< activity android:name="HelloActivity"> 




< intent-filter> 




< action android:name="android.intent.action.MAIN"/> 




< category android:name="android.intent.category.LAUNCHER"/> 




< /intent-filter> 




< /activity> 




< /application> 




< /manifest> 

由此它的Android命令行启动程序方法为:

# am start -n com.example.android.helloactivity/
com.example.android.helloactivity.HelloActivity 

其他的一些应用启动命令,如下所示:

calendar(日历)的启动方法为:

# am start -n com.android.calendar/com.android.calendar.LaunchActivity 

AlarmClock(闹钟)的启动方法为:

# am start -n com.android.alarmclock/com.android.alarmclock.AlarmClock 

Music 和 Video(音乐和视频)的启动方法为:

# am start -n com.android.music/com.android.music.MusicBrowserActivity  


# am start -n com.android.music/com.android.music.VideoBrowserActivity  


# am start -n com.android.music/com.android.music.MediaPlaybackActivity 

Camera(照相机)的Android命令行启动程序方法为:

# am start -n com.android.camera/com.android.camera.Camera 

Browser(浏览器)的Android命令行启动程序方法为:

相关推荐