gpt4 book ai didi

屏幕底部的 Android 覆盖

转载 作者:行者123 更新时间:2023-11-30 03:20:59 25 4
gpt4 key购买 nike

我想在我的应用程序中实现广告,但我想实现叠加 View 上的广告,应用的主要内容应该是前景和叠加层是主要内容的顶部,我想要对齐屏幕底部的覆盖层。请告诉我如何我可以在屏幕底部实现叠加吗???

最佳答案

实现此目的的最简单方法是使用 FrameLayout 作为 Root View 。下面是一些代码来演示这一点。我没有测试过这个特定的示例,但它应该可以在对 AdView 属性进行轻微修改后工作。

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Your main layout code goes here -->
</LinearLayout>
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
ads:adUnitId="MY_AD_UNIT_ID"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
ads:loadAdOnCreate="true"/>
</FrameLayout>

注意AdView的layout_gravity属性;这就是它出现在屏幕底部的原因。

关于屏幕底部的 Android 覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19129992/

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