gpt4 book ai didi

Android 如何在线性布局中将 AdView 居中对齐

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:29:31 25 4
gpt4 key购买 nike

我试图将 gogole Adview 与列表的底部和中心对齐,直到现在我能够强制 Adview 位于列表底部而不干扰列表,但它没有进入中心。

代码贴在下面,抱歉不能附上截图

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/topLayout"
android:layout_width="wrap_content"
android:layout_height="fill_parent" >

<LinearLayout
android:id="@+id/linearlayoutlistview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/ad_holder"
android:orientation="vertical" >

<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="2dip"
android:drawablePadding="4dip"
android:paddingTop="2dip"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textStyle="bold"
android:typeface="serif" >
</ListView>
</LinearLayout>

<!-- Ad Placeholder -->

<LinearLayout
android:id="@+id/ad_holder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="bottom" >

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

</LinearLayout>

</RelativeLayout>

最佳答案

不要使用 LinearLayout 作为 AdView 的父级。相反,为 AdView 使用 RelativeLayoutlayout_centerInParent="true":

<RelativeLayout
android:id="@+id/ad_holder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="bottom" >

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

</RelativeLayout>

关于Android 如何在线性布局中将 AdView 居中对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10143258/

25 4 0
文章推荐: javascript - React TextArea 值不会按预期自动更新
文章推荐: ios - Xamarin IOs,传递给 textStyle 参数的 UIFontMetrics.GetMetrics 方法的字符串值是什么?
文章推荐: javascript - 没想到服务器 HTML 在
中包含一个
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com