我已经成功实现了谷歌播放......并且它工作正常......但是当我在使用后关闭我的应用程序......并且在关闭应用程序几分钟后......给出错误“应用程序已意外停止” .....在日志猫它给出的错误是在BillingService.java
10-10 13:38:38.739:E/AndroidRuntime(3586):引起:java.lang.NullPointerException
10-10 13:38:38.739: E/AndroidRuntime(3586): 在。BillingService.handleCommand(BillingService.java:372)
10-10 13:38:38.739: E/AndroidRuntime(3586): 在。BillingService.onStart(BillingService.java:362)
10-10 13:38:38.739: E/AndroidRuntime(3586): 在 android.app.Service.onStartCommand(Service.java:438)
我的代码是....
public void onStart(Intent intent, int startId) {
handleCommand(intent, startId);------>362
}
public void handleCommand(Intent intent, int startId) {
String action = intent.getAction();------>line 732
if (Consts.DEBUG) {
Log.i(TAG, "handleCommand() action: " + action);
}
}