我有一个程序设置一个警告对话框,询问“你想购买”TITLE“for”PRICE“”
我知道Google IAB库有一个getSku()调用,但只有在购买该项目后才能使用。有没有办法在购买之前获得这两个变量?感谢。
我可能已经看过一个查询一堆sku的项目,其中列出了所有项目,但我可能错了
答案 0 :(得分:2)
在IABHelper中使用此方法:
List<String> moreSkus = new ArrayList<String>();
moreSkus.add("sku1");
moreSkus.add("sku2");
mHelper.queryInventoryAsync(true, moreSkus, mGotInventoryListener);
我测试它工作正常,你可以添加inapp或子类型sku列表,并返回在inventroty中的所有细节
答案 1 :(得分:1)
为此找到了解决方案。首先,您需要sku /产品ID。
public void getProductDetails(String sku) throws RemoteException, JSONException {
logDebug("getProductDetails - " + sku);
ArrayList<String> skuList = new ArrayList<>();
// Add the specific sku
skuList.add(sku);
if (sku != null) {
Bundle querySkus = new Bundle();
querySkus.putStringArrayList(GET_SKU_DETAILS_ITEM_LIST, skuList);
Bundle skuDetails = mService.getSkuDetails(3, mContext.getPackageName(), ITEM_TYPE_INAPP, querySkus);
ArrayList<String> responseList = skuDetails.getStringArrayList(RESPONSE_GET_SKU_DETAILS_LIST);
for (String thisResponse : responseList) {
SkuDetails d = new SkuDetails(thisResponse);
logDebug("Looking at sku details: " + d);
purchaseTitle = d.getTitle(); // these are set as variables so you can call them
purchasePrice = d.getPrice(); // whenever you want
}
}
}