1
我已經寫了廣播接收器來檢測應用這樣如何獲得最後安裝的應用程序
<receiver android:name="ApplicationBroadcastService" >
<intent-filter>
<action android:name="android.intent.action.PACKAGE_INSTALL" />
<action android:name="android.intent.action.PACKAGE_ADDED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
安裝事件現在的名字,我想抓住這最後的安裝應用程序的名字,我怎麼可能這樣做,謝謝。