23

我正在测试我的帐单,我得到了这个例外:

java.lang.IllegalStateException: Can't start async operation (launchPurchaseFlow) because another async operation(launchPurchaseFlow) is in progress.
        at utils.IabHelper.flagStartAsync(IabHelper.java:711)
        at utils.IabHelper.launchPurchaseFlow(IabHelper.java:316)
        at utils.IabHelper.launchPurchaseFlow(IabHelper.java:294)
        at com.problemio.SubscribeIntroActivity$6.onClick(SubscribeIntroActivity.java:117)
        at android.view.View.performClick(View.java:2532)
        at android.view.View$PerformClick.run(View.java:9308)
        at android.os.Handler.handleCallback(Handler.java:587)
        at android.os.Handler.dispatchMessage(Handler.java:92)
        at android.os.Looper.loop(Looper.java:150)
        at android.app.ActivityThread.main(ActivityThread.java:4293)
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:507)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
        at dalvik.system.NativeStart.main(Native Method)

在我运行这段代码之后:

    Button subscribe = (Button)findViewById(R.id.subscribe);
    subscribe.setOnClickListener(new Button.OnClickListener() 
    {  
       public void onClick(View v) 
       {              
           // FIRST CHECK IF THE USER IS ALREADY A SUBSCRIBER.
          mHelper.launchPurchaseFlow(SubscribeIntroActivity.this, SUBSCRIBE_SKU, RC_REQUEST, mPurchaseFinishedListener);

       }
    });   

但在此之前,我以测试用户身份运行它,测试产品 id 是这样的:android.test.purchased 并且它有效。但是,当我将产品 ID 更改为我自己的产品 ID 之一时,它崩溃了,但出现了上述异常。

任何想法为什么会这样?谢谢!

4

4 回答 4

55

IabHelper 一次只允许执行一个异步查询。您需要实现onActivityResult()并将参数传递到handleActivityResult()IabHelper 的方法中。

应用内计费示例代码实现的方法如下:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    Log.d(TAG, "onActivityResult(" + requestCode + "," + resultCode + "," + data);

    // Pass on the activity result to the helper for handling
    if (!mHelper.handleActivityResult(requestCode, resultCode, data)) {
        // not handled, so handle it ourselves (here's where you'd
        // perform any handling of activity results not related to in-app
        // billing...
        super.onActivityResult(requestCode, resultCode, data);
    }
    else {
        Log.d(TAG, "onActivityResult handled by IABUtil.");
    }
}
于 2013-01-02T22:18:33.307 回答
2

以防万一有人像我一样为了树木而错过森林......

java.lang.IllegalStateException在 Play 开发者控制台中收到了一个堆栈跟踪,它提供的只是错误消息......所以我被难住了。

起初我无法弄清楚这是怎么发生的,因为我从没想过要尝试点击两次触发 IAB 的按钮!(第一次点击后它看起来被禁用了,因为我们可以点击覆盖,[有时])。

因此,请确保您的用户不能点击您的按钮两次。

于 2015-11-24T23:08:51.603 回答
1

您正在使用 google 的示例代码,并且在 IabHelper 类第 793 行中有这段代码

 if (mAsyncInProgress) throw new IllegalStateException("Can't start async operation (" +
            operation + ") because another async operation(" + mAsyncOperation + ") is in       progress.");

当您第一次购买时,“mAsyncInProgress”变为真,直到您没有消费您的购买它仍然是真实的,所以您需要消费您的购买。我建议你完整阅读 util 包中的所有类,它会对你有所帮助。

成功购买后,您需要消费它

mHelper.consumeAsync(purchase, mConsumeFinishedListener)

但有时消费请求会失败,因此您需要在每次创建活动时处理您的购买:

mHelper.queryInventoryAsync(mGotInventoryListener);

并尝试在 mGotInventoryListener 回调中消耗您的购买。

于 2013-11-14T19:06:10.703 回答
0

在此处获取最新版本的库:https ://code.google.com/p/marketbilling/source/browse/他们在那里解决了问题

于 2014-05-27T20:37:05.550 回答