2013-10-31 76 views
0

我擡起頭看,但沒有碰到任何東西。adb命令打開FM

是否有任何ADB命令或Android的方式來打開Android手機中的FM?或者我將不得不創建和應用程序來做到這一點?

+0

define'打開FM' – njzk2

回答

1

您可能能夠使用Activity Manager commands亞行

adb shell am start -a <some intent>

adb shell am startservice -a <some intent>

但你應該閱讀問題Android Intent to launch radio application

除非你能找出什麼意圖被調用,那麼你可能會完全卡住。

+0

謝謝,我想我需要第三方應用程序。通讀清單並嘗試找出哪個意圖調用。聽起來像工作! – TeaLeave

+0

您可能可以使用logcat來查看正在啓動的目標,除此之外還有PackageExplorer,但您可能能夠找到更多 – Merlin

+0

也可以在https://github.com/intrications/intent-intercept上播放https://play.google.com/store/apps/details?id=uk.co.ashtonbrsc.android.intentintercept&hl=zh-CN – Merlin