如何在android中的其他视图(自定义视图)上显示adview

发布于 2024-12-11 13:42:36 字数 930 浏览 1 评论 0原文

如何在android中的其他视图(自定义视图)上显示adview? 我需要在自定义视图上播放广告。 这是我正在使用的 xml。

<RelativeLayout>

<Button
android:id="@+id/btnmenu"
android:layout_width="fill_parent"
android:layout_height="35dp"
android:text="Menu"
android:typeface="sans"
android:textStyle="bold|italic"
android:gravity="center"
android:textColor="@drawable/white"
android:layout_gravity="center_horizontal"
>
</Button>

<com.google.ads.AdView 
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="XXXXXXXX"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>

<view
class="com.android.MainScreen" 
android:id="@+id/note"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/btnmenu"
android:padding="10dip"
android:scrollbars="vertical"
android:fadingEdge="vertical" />

</RelativeLayout>  

任何帮助将不胜感激。

How to display adview on other view(custom view) in android ?
I need to play ads on custom view.
This is the xml I am using.

<RelativeLayout>

<Button
android:id="@+id/btnmenu"
android:layout_width="fill_parent"
android:layout_height="35dp"
android:text="Menu"
android:typeface="sans"
android:textStyle="bold|italic"
android:gravity="center"
android:textColor="@drawable/white"
android:layout_gravity="center_horizontal"
>
</Button>

<com.google.ads.AdView 
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="XXXXXXXX"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>

<view
class="com.android.MainScreen" 
android:id="@+id/note"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/btnmenu"
android:padding="10dip"
android:scrollbars="vertical"
android:fadingEdge="vertical" />

</RelativeLayout>  

Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我纯我任性 2024-12-18 13:42:36

尝试将您的 AdView 移至 XML 文件中的自定义视图下方。它可能会在 AdView 之上绘制自定义视图。您还需要将 AdView 的位置设置在按钮下方,就像使用 android:layout_below="@+id/btnmenu" 处理自定义视图一样。

<view
class="com.android.MainScreen" 
android:id="@+id/note"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/btnmenu"
android:padding="10dip"
android:scrollbars="vertical"
android:fadingEdge="vertical" />

<com.google.ads.AdView 
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/btnmenu"
ads:adUnitId="XXXXXXXX"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>

Try moving your AdView below your custom view in the XML file. It may be drawing the custom view on top of the AdView. You'll also want to set the AdView's position below the button like you are doing with your custom view with android:layout_below="@+id/btnmenu".

<view
class="com.android.MainScreen" 
android:id="@+id/note"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/btnmenu"
android:padding="10dip"
android:scrollbars="vertical"
android:fadingEdge="vertical" />

<com.google.ads.AdView 
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/btnmenu"
ads:adUnitId="XXXXXXXX"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
春夜浅 2024-12-18 13:42:36

这对你很有帮助......`

AdManager.setTestDevices( new String[] {
                //AdManager.TEST_EMULATOR // Android emulator
                "ENTER_DEVICE_ID_HERE", // Device ID of the device you want to test on
                } );

        AdView adView = (AdView)findViewById(R.id.ad);
        adView.requestFreshAd();
      `

it's very help to u....`

AdManager.setTestDevices( new String[] {
                //AdManager.TEST_EMULATOR // Android emulator
                "ENTER_DEVICE_ID_HERE", // Device ID of the device you want to test on
                } );

        AdView adView = (AdView)findViewById(R.id.ad);
        adView.requestFreshAd();
      `
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文