本文整理汇总了Java中org.sufficientlysecure.donations.google.util.IabResult类的典型用法代码示例。如果您正苦于以下问题:Java IabResult类的具体用法?Java IabResult怎么用?Java IabResult使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IabResult类属于org.sufficientlysecure.donations.google.util包,在下文中一共展示了IabResult类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onIabPurchaseFinished
import org.sufficientlysecure.donations.google.util.IabResult; //导入依赖的package包/类
public void onIabPurchaseFinished(IabResult result, Purchase purchase) {
if (mDebug)
Utils.showLog(context, "Purchase finished: " + result + ", purchase: " + purchase);
// if we were disposed of in the meantime, quit.
if (mHelper == null) return;
if (result.isSuccess()) {
if (mDebug)
Utils.showLog(context, "Purchase successful.");
// directly consume in-app purchase, so that people can donate multiple times
mHelper.consumeAsync(purchase, mConsumeFinishedListener);
// show thanks openDialog
openDialog(android.R.drawable.ic_dialog_info, R.string.donations__thanks_dialog_title,
getString(R.string.donations__thanks_dialog));
}
}
示例2: onIabPurchaseFinished
import org.sufficientlysecure.donations.google.util.IabResult; //导入依赖的package包/类
public void onIabPurchaseFinished(IabResult result, Purchase purchase) {
if (mDebug)
Log.d(TAG, "Purchase finished: " + result + ", purchase: " + purchase);
// if we were disposed of in the meantime, quit.
if (mHelper == null) return;
if (result.isSuccess()) {
if (mDebug)
Log.d(TAG, "Purchase successful.");
// directly consume in-app purchase, so that people can donate multiple times
mHelper.consumeAsync(purchase, mConsumeFinishedListener);
// show thanks openDialog
openDialog(android.R.drawable.ic_dialog_info, R.string.donations__thanks_dialog_title,
getString(R.string.donations__thanks_dialog));
}
}
示例3: onConsumeFinished
import org.sufficientlysecure.donations.google.util.IabResult; //导入依赖的package包/类
public void onConsumeFinished(Purchase purchase, IabResult result) {
if (mDebug)
Utils.showLog(context, "Consumption finished. Purchase: " + purchase + ", result: " + result);
// if we were disposed of in the meantime, quit.
if (mHelper == null) return;
if (result.isSuccess()) {
if (mDebug)
Utils.showLog(context, "Consumption successful. Provisioning.");
}
if (mDebug)
Utils.showLog(context, "End consumption flow.");
}
示例4: onConsumeFinished
import org.sufficientlysecure.donations.google.util.IabResult; //导入依赖的package包/类
public void onConsumeFinished(Purchase purchase, IabResult result) {
if (mDebug)
Log.d(TAG, "Consumption finished. Purchase: " + purchase + ", result: " + result);
// if we were disposed of in the meantime, quit.
if (mHelper == null) return;
if (result.isSuccess()) {
if (mDebug)
Log.d(TAG, "Consumption successful. Provisioning.");
}
if (mDebug)
Log.d(TAG, "End consumption flow.");
}
示例5: onConsumeFinished
import org.sufficientlysecure.donations.google.util.IabResult; //导入依赖的package包/类
public void onConsumeFinished(
Purchase purchase, IabResult result)
{
if (mDebug)
Log.d(TAG,
"Consumption finished. Purchase: "
+ purchase
+ ", result: " + result);
// if
// we
// were
// disposed
// of
// in
// the
// meantime,
// quit.
if (mHelper == null)
return;
if (result.isSuccess())
{
if (mDebug)
Log.d(TAG,
"Consumption successful. Provisioning.");
}
if (mDebug)
Log.d(TAG, "End consumption flow.");
}
示例6: onIabPurchaseFinished
import org.sufficientlysecure.donations.google.util.IabResult; //导入依赖的package包/类
public void onIabPurchaseFinished(
IabResult result, Purchase purchase)
{
handleResult(result.getResponse(),
purchase);
}