任何人都可以解释激励广告格式的具体政策

问题描述

激励广告格式的具体政策 除了常见的激励广告资源政策外,激励广告还必须遵守以下特定格式的政策:

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

解决方法

只有在用户肯定地选择查看激励广告后,才能投放激励广告。

-> 下面是示例代码。在您的工作流程中点击按钮时,向用户显示一个弹出窗口以查看带有取消选项的奖励广告

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"),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();
    }

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

-> 如果您同时加载多个奖励。您需要要求用户确认每次显示每个奖励。