- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
好吧,我已经尝试修复这个问题好几天了,我不会来这里找人为我做我的工作,因为我一直在排除故障并修复 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/
如果我想为收藏创建一个 Intent 。 如果用户问“他最喜欢什么”,它会显示一些建议芯片 因此它会调用与该芯片相关的任何后续 Intent 。 最喜欢的饮料 最喜欢的食物 最喜欢的电影等 我还想直接
我确信有一些显而易见的事情,但还没有找到解决这个简单问题的方法。错误是在用户猜出正确答案时尝试启动另一个 Activity 的主要 Activity : Error:(85, 23) Unresolv
public class MainActivity extends Activity { Button b; //FrameLayout fl; @Override p
我对 intentService 有点困惑。文档说,如果您向 intentService 发送多个任务( Intent ),那么它将在一个单独的线程上一个接一个地执行它们。我的问题是 - 是否可以同时
我正在尝试从其他应用程序获取 mime 类型 text/plain 的 Intent 并将该文本存储在字符串类型的变量中。它在 onCreate 方法中工作正常,但是当我使用 singleTask 作
我想知道,2个代码有什么区别? newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
如何设置我的 Activity 以响应任何类型的共享 Intent 。 我试过:- 但是这不起作用,我已经阅读了http://developer.android.co
鉴于子类具有不同的上下文以及在单击监听器后启动的不同 Activity ,父类(super class)中的代码 Intent Intent=new Intent(context,Activity.c
更新#1:更多信息添加到这篇文章的末尾 我是 Android 开发和测试的新手。 我有 3 个 Espresso 测试。第一个测试通过,但第二个不会运行,因为在第二个测试之前调用 setUp() 方法
我是 Espresso UI 测试的新手。 我在运行测试时遇到这个错误(ADT Eclipse IDE)。 该应用程序已经开发完成,并且在启动该应用程序时有很多请求正在进行。无法重写应用程序。但我需要
因此,尝试创建一个我认为是基本简历应用程序的应用程序。我有两个类(class),都有同样的问题。它说它“无法解析符号 Intent ” 谷歌部分做了,但没有任何意义.. 这是我的代码。 MainAct
我正在尝试将 user_id 值从一个 Intent 传递到另一个 Intent。我知道这是一个非常简单的过程,而且我已经这样做了好几次了。但对于下面的代码,我有点困惑。 我需要将 user_id 值
这是我将值传递给名为 choice 的类的主要 Activity 。 @Override public void onClick(View v) { // TODO Auto-generated me
我正在寻找一个 Android Intent 来翻译文本,我发现了这个: Google Translate Activity not working anymore 但我想在任务管理器中使用它。我真的
可以设置多个启动 Intent ,例如,当用户点击通知时。 让我解释一下我的具体问题: 我有一个带通知的应用程序。每个通知都会打开一个不同的 Activity (也有不同的附加功能)。 现在我想提取有
我有一个 Intent launchIntent = packageManagerForListener.getLaunchIntentForPackage(packagesForAdapter[po
List targetedShareIntents = new ArrayList(); Intent shareIntent = new Intent(android.content.Intent.
所以我试图在选择列表中的项目后启动一个新 Activity ......根据我所读的内容非常基本。我也在尝试在附加功能中发送一个值。所以我可以选择列表中的项目,然后新 Activity 开始,extr
有没有一种方法可以将一个Intent bundle 从一个 Intent 传递到另一个 Intent ,而不必提取包并单独处理每个额外的 Intent ? 例子: intent2.setExtras(
这个问题在这里已经有了答案: Android 5.0 (L) Service Intent must be explicit in Google analytics (11 个答案) 关闭 6 个月
我是一名优秀的程序员,十分优秀!