ユーザーがアプリ内課金で購入したアイテムを購入するためのボタンをアプリから削除するにはどうすればよいか考えていました。共有設定を使用できますが、どうすればそれを行うことができますか。これは私が使用したチュートリアルです: http://www.anddev.org/advanced-tutorials-f21/simple-inapp-billing-payment-t52060.html .
ありがとう
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 attempted purchase is: "+BillingHelper.latestPurchase.productId);
};
};