如何在android中的其他视图(自定义视图)上显示adview
如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将您的 AdView 移至 XML 文件中的自定义视图下方。它可能会在 AdView 之上绘制自定义视图。您还需要将 AdView 的位置设置在按钮下方,就像使用
android:layout_below="@+id/btnmenu"
处理自定义视图一样。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"
.这对你很有帮助......`
it's very help to u....`