奖励广告格式的具体政策谁都可以解释



奖励广告格式特定策略除了常见的奖励目录政策外,奖励广告还必须遵守以下格式特定政策:

奖励广告只有在用户肯定地选择查看奖励广告后才能提供。此外,用户必须选择单独查看每个奖励广告,并且不能选择自动查看奖励广告。

奖励广告只有在用户肯定地选择查看奖励广告后才能提供。

→下面是示例代码。显示一个弹出窗口,用户查看奖励广告与取消选项点击按钮在您的工作流程

private void ShowRewardVideoDialog() {
new AlertDialog.Builder(this)
.setTitle("App Title")
.setMessage("Free version of this app, allows you to view game without any purchase. You just need reward points to view more games. For that, click on "Watch Video" button to earn reward points and play game for free. OR  click on "purchase" for just one time payment to access any level without any advertisement ")
.setPositiveButton("Purchase"),
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int which) {
showUpgradeDialog();
}
})
.setNegativeButton("Watch Video"),
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int which) {
if (mRewardedVideoAd.isLoaded()) {
mRewardedVideoAd.show();
} else {
loadRewardedVideoAd();
Toast.makeText(mctx, "Fail to Load Reward Video : Please try again", Toast.LENGTH_LONG).show();
}
}
})
.setNeutralButton("cancel"), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
})
.create().show();
}

此外,用户必须选择单独查看每个奖励广告,并且不能选择自动查看奖励广告。

→如果你同时加载多个奖励。您需要询问用户确认每次显示每个奖励。

相关内容

最新更新