我正在开发一个 android 项目,刚刚下载了最新版本的 admob sdk。
我正在尝试将广告放在屏幕底部,但我尝试的任何方法似乎都不起作用。
下面是布局的 XML 代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView android:id="@+id/password_noRecords"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_gravity="center"
android:text="There are currently\nno saved logins"
android:textSize="20dp"
android:textStyle="bold|italic"/>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</ListView>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="MY_ID"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, emulator-5554"
ads:loadAdOnCreate="true">
</com.google.ads.AdView>
</LinearLayout>
我已经尝试在高度上制作 ListView 和 LinearLayout fill_parent,但是在 logcat 中说没有足够的空间来显示广告。
我还尝试将广告包装在线性布局中并说 align parent bottom = true 但这并没有什么不同。
相反,广告直接放置在列表视图的底部,因此如果列表视图为半空,则广告位于屏幕中间。
我想要的是广告始终在屏幕底部可见,无论列表视图有多大或多小。
感谢您的任何帮助,您可以提供。