Appodeal 横幅广告覆盖屏幕 Android/LibGDX

Appodeal Banner Ad Covers Screen Android/LibGDX

我正在尝试将 Appodeal 横幅添加到 LibGDX 应用程序中,但横幅广告覆盖了屏幕而不是放在屏幕上方。我在 LibGDX 中找不到任何关于使用 Appodeal 的教程,所以我正在研究这个关于在 LibGDX 中使用 Admob 的教程。 https://github.com/libgdx/libgdx/wiki/Admob-in-libgdx

我不知道如何以视图的形式获取 Appodeal 横幅广告,可以使用 addView() 方法将其添加到 RelativeLayout。我尝试了几种标记为“ATTEMPT #1”和“ATTEMPT #2”的方法,但在这两种尝试中,横幅广告根本不显示。 “Appodeal.show(this, BANNER);”这一行将横幅放在屏幕顶部,以便将其注释掉。任何帮助弄清楚这个数字的帮助将不胜感激。谢谢

这是我的 AndroidLauncher.java 文件,我在其中创建和显示横幅广告。

public class AndroidLauncher extends AndroidApplication {
    private final int BANNER = 4;

    @Override
    protected void onCreate (Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();

        // LAYOUT: combines LibGDX View and Ad View
        RelativeLayout relativeLayout = new RelativeLayout(this);

        // Ad View
        Appodeal.initialize(this, "fee50c333ff3825fd6ad6d38cff78154de3025546d47a84f", BANNER);
        Appodeal.setTesting(true);
//        Appodeal.show(this, BANNER);
        // ATTEMPT #1
        BannerView bannerView = Appodeal.getBannerView(this);
        // ATTEMPT #2
//        BannerView bannerView = new BannerView(this, null);
//        Appodeal.setBannerViewId(bannerView.getId());

        // LibGDX View
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
        getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);     
        View libgdxView = initializeForView(new AppodealGDXDemo(), config);

        // add to view
        relativeLayout.addView(bannerView);
        relativeLayout.addView(libgdxView);

        // set layout
        setContentView(relativeLayout);
    }
}

我终于在 Appodeal 网站上找到了帮助我的信息。 https://wiki.appodeal.com/en/android/2-5-8-android-sdk-integration-guide/ad-types 他们似乎对他们的网站做了很多更改,因为我从 google 找到的他们网站上的文档链接已重定向到主页。

我现在可以使用了,这是更新后的代码。

public class AndroidLauncher extends AndroidApplication {
    @Override
    protected void onCreate (Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();

        // LAYOUT: combines LibGDX View and Ad View
        LinearLayout layout = new LinearLayout(this);
        layout.setOrientation(LinearLayout.VERTICAL);

        // Ad View
        Appodeal.initialize(this, "fee50c333ff3825fd6ad6d38cff78154de3025546d47a84f", Appodeal.BANNER_VIEW);
        Appodeal.setTesting(true);
        BannerView bannerView = Appodeal.getBannerView(this);
        Appodeal.show(this, Appodeal.BANNER_VIEW);

        // LibGDX View
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
        getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);     
        View libgdxView = initializeForView(new AppodealGDXDemo(), config);

        // add to layout
        layout.addView(bannerView);
        layout.addView(libgdxView);

        // set layout
        setContentView(layout);
    }
}