gpt4 book ai didi

android - Inmobi 与 Android APP 集成不显示广告

转载 作者:行者123 更新时间:2023-12-04 03:16:50 24 4
gpt4 key购买 nike

我已将 inmobi 集成到我的 Android 应用程序中。 没有广告。

在我的 MainActivity 代码和 xml 文件中给出。

 InMobiSdk.init(MainActivity.this, "5a41560ee01d46c5a38fcd4e56236ff7");
InMobiSdk.setLogLevel(InMobiSdk.LogLevel.DEBUG);
InMobiBanner banner = (InMobiBanner)findViewById(R.id.banner);
banner.load();

XML文件的代码如下

<com.inmobi.ads.InMobiBanner

android:id="@+id/banner"
android:layout_width="320dp"
android:layout_height="50dp"
ads:placementId="1479424179204"
ads:refreshInterval="60"/>

谁能帮我解决我哪里出错了。我已经在 list 文件中指定了所需的所有权限。

请帮帮我

最佳答案

在 Java 代码中添加横幅。

 private void addBanner() {
InMobiBanner bannerAd = new InMobiBanner(this, placement ID);
RelativeLayout adContainer = findViewById(R.id.banner);
float density = getResources().getDisplayMetrics().density;
RelativeLayout.LayoutParams bannerLp = new RelativeLayout.LayoutParams((int) (320 * density), (int) (50 * density));
adContainer.addView(bannerAd, bannerLp);
bannerAd.load();
}

关于android - Inmobi 与 Android APP 集成不显示广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40283677/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com