在Android命令列啟動程式的方法

來源:互聯網
上載者:User

在Android中,除了從介面上啟動程式之外,還可以從命令列啟動程式,使用的是命令列工具am.啟動的方法為 

# am start -n 包(package)名/包名.活動(activity)名稱 

啟動的方法可以從每個應用的AndroidManifest.xml的檔案中得到,以計算機(calculator)為例:

代碼

<?xml version="1.0" encoding=""?>
<manifestxmlns:android="http://schemas.android.com/apk/res/android" package="com.android.calculator2">
<applicationandroid: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" />
<categoryandroid: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=""?>
<manifestxmlns: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"/>
<categoryandroid: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)。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.