我正在阅读他们拥有的本教程:developer.android.com/guide/market/billing/billing_integrate.html
我在这部分“绑定到 MarketBillingService”
他们在那里给出了这些代码片段:
try {
boolean bindResult = mContext.bindService(
new Intent("com.android.vending.billing.MarketBillingService.BIND"), this,
Context.BIND_AUTO_CREATE);
if (bindResult) {
Log.i(TAG, "Service bind successful.");
} else {
Log.e(TAG, "Could not bind to the MarketBillingService.");
}
} catch (SecurityException e) {
Log.e(TAG, "Security exception: " + e);
}
但我不知道把它们放在哪里。它是否进入用户按下“购买”按钮的活动屏幕?如果是这样,他们使用的 mContext 对象是什么?我如何证明这一点?这像按钮监听器吗?此代码是否意味着在按钮侦听器中?
谢谢!