gpt4 book ai didi

android - 广告覆盖布局 Android 底部

转载 作者:行者123 更新时间:2023-11-29 21:25:46 24 4
gpt4 key购买 nike

我有一个简单的布局。但是我不能让它与我想放在底部的广告一起使用。这是有广告和没有广告的 2 个屏幕截图。

无广告

enter image description here

有广告

enter image description here

正如您在加载 AD 时看到的那样,它覆盖了两个按钮(处于相对布局中)。我怎样才能做到这一点,所以当加载 AD 时,我的相对布局会在广告上方“凸起”?这是我的 XML。

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res/example.com">



<com.example.touch.TouchImageView android:id="@+id/mytouchview"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="5dp"
android:layout_above="@+id/relat"
/>




<RelativeLayout
android:id="@+id/relat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
>

<ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="3dp" android:layout_alignParentLeft="true"
android:background="@null" android:src="@drawable/previous" android:id="@+id/previous"/>

<TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:textSize="20sp" android:text="2/15"
android:id="@+id/memeNumber" android:layout_centerInParent="true" android:layout_margin="5dp"/>


<ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="3dp" android:layout_alignParentRight="true"
android:background="@null" android:src="@drawable/next" android:id="@+id/next"/>


</RelativeLayout>



<com.csjy.sfwn148282.AdView
xmlns:ap="http://schemas.android.com/apk/res-auto"
android:id="@+id/myAdView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ap:animation="fade"
ap:placementType="interstitial"
ap:banner_type="inappad"
ap:test_mode="true"
ap:canShowMR="false"
android:layout_alignParentBottom="true"


/>

</RelativeLayout>

编辑:

我确实听从了@Szymon 的建议,但我现在面临的问题是布局的定位是这样的,直到广告加载为止。在那之后,它会像它应该的那样工作。如何解决?

enter image description here

最佳答案

这对你有用。请注意,对于您声明的每个变量,您应该只使用一次@+id(即使您在实际元素以外的其他地方声明它)。在下面的代码中,它在 android:layout_above 中声明,并且在实际元素声明中仅用作 @id

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res/example.com">



<com.example.touch.TouchImageView android:id="@+id/mytouchview"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="5dp"
android:layout_above="@+id/relat"
/>

<RelativeLayout
android:id="@id/relat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:layout_above="@+id/myAdView"
>

<ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="3dp" android:layout_alignParentLeft="true"
android:background="@null" android:src="@drawable/previous" android:id="@+id/previous"/>

<TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:textSize="20sp" android:text="2/15"
android:id="@+id/memeNumber" android:layout_centerInParent="true" android:layout_margin="5dp"/>


<ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="3dp" android:layout_alignParentRight="true"
android:background="@null" android:src="@drawable/next" android:id="@+id/next"/>


</RelativeLayout>



<com.csjy.sfwn148282.AdView
xmlns:ap="http://schemas.android.com/apk/res-auto"
android:id="@id/myAdView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ap:animation="fade"
ap:placementType="interstitial"
ap:banner_type="inappad"
ap:test_mode="true"
ap:canShowMR="false"
android:layout_alignParentBottom="true"
/>

</RelativeLayout>

关于android - 广告覆盖布局 Android 底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20250962/

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