1.撥打電話:am start -a android.intent.action.CALL -d tel:10086 這裡-a表示動作,-d表述傳入的數據,還有-t表示傳入的類型。 2. 打開一個網頁:am start -a android.intent.action.VIE
1.撥打電話:am start -a android.intent.action.CALL -d tel:10086
這裡-a表示動作,-d表述傳入的數據,還有-t表示傳入的類型。
2. 打開一個網頁:am start -a android.intent.action.VIEW -d http://www.baidu.com (這裡-d表示傳入的data)
3.啟動一個activity:am start -n com.hysmarthotel.movie/com.hysmarthotel.movie.MainActivity
4:啟動一個服務:am startservice -n com.android.music/com.android.music.MediaPlaybackService (這裡-n表示組件)
5:發送一個廣播:am broadcast -a com.smz.mybroadcast am broadcast -a <廣播動作>
另外am命令可以編寫進android系統中,存到到system/etc/hotkey.xml中,
hotkey.xml編寫格式如下:
<?xml version="1.0" encoding="utf-8"?>
<hotkey>
<event
code="00b7"
cmd="am start -n com.amlogic.tvplay/com.amlogic.tvplay.MainActivity"/>
<event
code="00b8"
cmd="am start -n com.hysmarthotel.movie/com.hysmarthotel.movie.MainActivity"/>
<event
code="003f"
cmd="am start -n sdmc.hotel.remote/sdmc.hotel.remote.KeXinListView"/>
</hotkey>
其中event表示鍵值對,code表示你遙控器的碼值(16進位)cmd表示你需要發送的廣播或者啟動的activity
當你配置好hotkey的時候,你在android應用層按相關的鍵,系統就會執行hotkey裡面相關的命令