彼らが持っているこのチュートリアルを進めています: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 オブジェクトは何ですか? どうすればそれを実証できますか?それはボタンリスナーのようなものですか?このコードは、ボタン リスナーにあることを意図していますか?
ありがとう!