gpt4 book ai didi

android - 在 App Billing 中遇到未决 Intent 和切换 Activity 的问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:53:44 25 4
gpt4 key购买 nike

好吧,我已经尝试修复这个问题好几天了,我不会来这里找人为我做我的工作,因为我一直在排除故障并修复 LogCat 中的每条错误消息。我正在使用 Andengine 开发 Android 游戏(这可能是问题的一部分,因此熟悉它可能会有所帮助)。我没有做任何花哨的事情,我的游戏 Activity 都是单一场景,没有任何物理或类似的东西,只有一堆 Sprite 和纹理。我还在游戏中的所有其他 Activity 中使用了 Andengine,因为我发现它是设置图形吸引人的屏幕的一种非常简单的方法。其中一个屏幕是我的应用程序内商店,用户可以在其中购买关卡包和新 Sprite 。这一切的计费部分都很好,购买通过市场进行,那里没有什么太复杂的......

当用户点击购买时,市场屏幕会弹出并加载他们选择的产品(这些是真实的产品,不是安卓测试,虽然游戏没有发布)。市场屏幕会在当前 Activity 上弹出,无论我是使用作为游戏堆栈一部分的“Android 2.0”实现,还是使用作为其自身堆栈一部分的“Android 1.6”实现。我更愿意使用 Android 2.0 实现,但如果我只能让 1.6 工作,我会接受它。所以无论如何,当用户使用后退按钮取消购买或使用信用卡完成购买时,问题就会出现,这都会导致市场屏幕消失并且应用程序开始一个新的 Activity ,这只是一个黑屏(最终时间出来并导致强制关闭)。购买成功,但用户没有获得产品,因为在我们获取代码以更改用户在游戏中的元素之前,游戏强制退出。现在对于一些代码,我使用了本教程 (http://www.anddev.org/advanced-tutorials-f21/simple-inapp-billing-payment-t52060.html),没有做任何更改。 BillingHelper 类是最重要的,因为它包含 requestPurchase() 方法和 startBuyPageActivity() 方法。我从我的 StoreFront Activity 中调用请求购买,如下所示:

            BillingHelper.requestPurchase(StoreFront.this, itemID); 

在 StoreFront 的 onCreate 中,我有这些东西(按照图坦卡蒙的指示):

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

...

//some handler that billing needs
public Handler mTransactionHandler = new Handler(){
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()){
//TODO do something here if we've completed our latest purchase,
//this should be with the status bar notifications and
//saved preferences
}
};

};

所以我认为问题不在于此。以下是 BillingHelper 的相关部分

protected static void requestPurchase(Context activityContext, String itemId){
if (amIDead()) {
return;
}
Log.i(TAG, "requestPurchase()");
Bundle request = makeRequestBundle("REQUEST_PURCHASE");
request.putString("ITEM_ID", itemId);
try {
Bundle response = mService.sendBillingRequest(request);

//The RESPONSE_CODE key provides you with the status of the request
Integer responseCodeIndex = (Integer) response.get("RESPONSE_CODE");
//The PURCHASE_INTENT key provides you with a PendingIntent, which you can use to launch the checkout UI
PendingIntent pendingIntent = (PendingIntent) response.get("PURCHASE_INTENT");
//The REQUEST_ID key provides you with a unique request identifier for the request
Long requestIndentifier = (Long) response.get("REQUEST_ID");
Log.i(TAG, "current request is:" + requestIndentifier);
C.ResponseCode responseCode = C.ResponseCode.valueOf(responseCodeIndex);
Log.i(TAG, "REQUEST_PURCHASE Sync Response code: "+responseCode.toString());

startBuyPageActivity(pendingIntent, new Intent(), activityContext);
} catch (RemoteException e) {
Log.e(TAG, "Failed, internet error maybe", e);
Log.e(TAG, "Billing supported: "+isBillingSupported());
}
}

我尝试使用各种参数从 StoreFront 调用,例如 StoreFront.this、getApplicationContext()、别处的静态上下文存储、别处存储的静态 Activity、getBaseContext() 我能想到的任何东西...

这是其他相关 Activity

private static void startBuyPageActivity(PendingIntent pendingIntent, Intent intent, Context context){
//android 1.6 method
try {
pendingIntent.send(context, 0, intent);
} catch (CanceledException e){
Log.e(TAG, "startBuyPageActivity CanceledException");
}
}

没什么特别的,我只是希望用户在购买商品或在此过程中按下返回时返回到我的任何各种 Activity (最好是 StoreFront)。请帮助!

编辑:我想要任何可能的解决方案来允许应用内结算在购买完成后返回到我的应用程序,即使是最困惑的解决方案。

编辑

问题的 logcat 和方法调用:

  "BillingService Starting", 
BillingHelper.setCompletedHandler(),
StoreFront.onStart() called,
StoreFront.onResume() called,
"BillingService Service starting with onCreate",
"BillingService Market Billing Service Successfully Bound",
"BillingService Market Billing Service Connected",
BillingHelper.instantiateHelper(),
then this is where I actually click the buy button in the store (all of that runs just when opening StoreFront):
BillingHelper.setCompletedHandler(),
BillingHelper.isBillingSupported(),
BillingHelper.amIDead(),
BillingHelper.makeRequestBundle(),
"BillingService isBillingSupported response was: RESULT OK",
BillingHelper.requestPurchase(),
BillingHelper.amIDead(),
"BillingService requestPurchase()",
BillingHelper.makeRequestBundle(),
"BillingService current request is ......",
"BillingService REQUEST PURCHASE Sync Response code: RESULT OK",
BillingHelper.startBuyPageActivity(),
"BillingService Recieved action: com.android.vending.billing.RESPONSE CODE",
"BillingService checkResponseCode got requestID..."
"BillingService checkResponseCode go responseCode RESULT ERROR"
(this is because I can't purchase on this device),
and then I get an Error message saying: "E 32427 Surface surface (identity=5925) is invalid, err=-19 (No such device)" and from there nothing works anymore.

此外,我还在另一部手机上测试过这个(与我合作的另一位开发人员,他实际上可以在其中购买东西但仍然出现黑屏错误)并且他也没有收到你在评论中提到的处理程序消息

编辑:如果我不得不猜测错误在哪里,我会说是这个

06-16 11:20:23.635: DEBUG/dalvikvm(3807): GC_EXPLICIT freed 53K, 45% free 3710K/6663K, external 1K/513K, paused 102ms
06-16 11:20:23.885: ERROR/Surface(3807): surface (identity=158) is invalid, err=-19 (No such device)
06-16 11:20:23.905: ERROR/Surface(3807): surface (identity=158) is invalid, err=-19 (No such device)
06-16 11:20:23.905: ERROR/Surface(3807): surface (identity=158) is invalid, err=-19 (No such device)
06-16 11:20:23.905: ERROR/Adreno200-EGL(3807): egliSwapWindowSurface: unable to dequeue native buffer

请注意,中断异常是 Andengine 库所期望的,因此这是一个转移注意力的问题。

此外(我希望这在这里被允许)我将提供 Paypal 奖励作为解决方案。如果这违反了 SO 的条款,那么只需删除此行,请不要关闭此问题。

最佳答案

我可能知道出了什么问题,我有一个测试要你做。购买屏幕在用户取消购买或完成购买后运行结束调用。出于某种原因,对我来说,完成调用正在向下移动到当前正在运行的 Activity 和(关闭???它)。

这是日志中的相关行:

06-16 11:20:22.774:WARN/ActivityManager(132):HistoryRecord 的重复完成请求{40ace828 com.android.vending/.billing.InAppBuyPageActivity}

我想我在我的代码中解决了这个问题是我不记得我做了什么(可能没有在我的购买完成处理程序中调用完成......)

我对 Andgen 一无所知,但是如果在主要的 Andgen Activity 上调用了结束调用,会发生什么情况?我想它会停止执行,您可能会遇到黑屏和应用程序崩溃。

因此,要对此进行测试,请为您的购买页面创建一个单独的 Activity 。不需要很复杂-也许让它在启动后只买一个 jar 装产品。运行你的代码,看看它是否仍然给你带来厄运的黑屏。我敢打赌:它可能会退出 Activity 回到您的游戏中,但我认为它会起作用。

希望这对您有所帮助,祝您好运!

关于android - 在 App Billing 中遇到未决 Intent 和切换 Activity 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6352150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com