0

我想在我的应用程序中使用应用程序购买。我的目标是示例。一切正常,直到完成应用内购买。我可以购买产品。它应该在完成该过程后调用处理程序,但它不起作用。所以产品没有提供给用户。  

代码部分如下:

BillingHelper.requestPurchase(activity, productId); 
Handler mTransactionHandler = new Handler(){

@Override
public void handleMessage(android.os.Message msg) {
   Log.i(TAG, "Transaction complete");
   Log.i(TAG, "Transaction status: "+BillingHelper.latestPurchase.purchaseState);
   Log.i(TAG, "Item purchased is: "+BillingHelper.latestPurchase.productId);
   if(BillingHelper.latestPurchase.isPurchased()){
            // my code is here
       }     
    };
};

startService(new Intent(activity, BillingService.class));
BillingHelper.setCompletedHandler(mTransactionHandler);

你有什么主意吗?

4

0 回答 0