命令行启动Android程序

引:http://xusaomaiss.javaeye.com/blog/372141

安装卸载:

1.安装Android程序

1).启动模拟器,emulator;
2).通过adb install *.apk其实将apk文件上传到了模拟器自带操作系统的data/app目录下了;
3).可以在android的界面下打开apk应用程序了

2.删除Android应用程序

如果要卸载apk却没有提供adb uninstall这个命令,要移除只好进入模拟器操作系统的文件系统内部手动删除apk文件了。如何做?运行adb shell 可进入模拟器自带的操作系统,然后的操作和Linux一样:cd data/app ; rm HelloAndroid.apk ;就可以了。下次就不会再见到这个Android程序了。

 

命令行启动:

在Android中,除了从界面上启动程序之外,还可以从命令行启动程序,使用的是命令行工具am .
启动的方法为
  # 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> 

由此  的启动方法为: 
# 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(照相机) 的启动方法为: 
# am start -n com.android.camera/com.android.camera.Camera 

Browser (浏览器)的启动方法为: 
# am start -n com.android.browser/com.android.browser.BrowserActivity 

  一般情况希望,一个Android应用对应一个工程。值得注意的是,有一些工程具有多个活动( activity ),而有一些应用使用一个工程。例如:在Android界面中, Music和Video是两个应用,但是它们使用的都是packages/apps/Music这一个工程。而在 这个工程  AndroidManifest.xml文件中,有包含了不同的 活动( activity )。

posted @ 2010-11-30 11:33  小肖程序  阅读(1705)  评论(0编辑  收藏  举报