gpt4 book ai didi

android - 在 android 中的布局顶部放置广告

转载 作者:行者123 更新时间:2023-11-30 00:52:21 26 4
gpt4 key购买 nike

移动广告没有定位在布局的顶部,就像广告定位在底部> .它没有重叠布局。

这是布局的图像,我在说什么,看看 Image of the layout

这是它的xml代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:ads="http://schemas.android.com/apk/res-auto"
tools:context="com.dancing.dance.girl"
android:background="@mipmap/vsdv">


<com.google.android.gms.ads.AdView
android:id="@+id/abovebeauty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentTop="true"
ads:adSize="BANNER"
ads:adUnitId="@string/dancinggirl">
</com.google.android.gms.ads.AdView>



<!-- TODO: Update blank fragment layout -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="2"
android:id="@+id/beauty_fragment"
android:orientation="vertical"
android:padding="10dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2" >

<ImageButton
android:layout_width="0dp"
android:layout_height="fill_parent"
android:id="@+id/1"
android:layout_weight="1"
android:src="@drawable/lob"
android:background="@null"
android:scaleType="fitXY"


android:layout_marginLeft="20dp"
android:layout_marginRight="5dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="5dp" />
<ImageButton
android:layout_width="0dp"
android:layout_height="fill_parent"
android:id="@+id/2"
android:layout_weight="1"
android:src="@drawable/lob"
android:background="@null"
android:scaleType="fitXY"


android:layout_marginTop="20dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="5dp" />




</LinearLayout>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2" >

<ImageButton
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:src="@drawable/lob"
android:background="@null"
android:scaleType="fitXY"
android:id="@+id/3"

android:layout_marginLeft="20dp"
android:layout_marginRight="5dp"
android:layout_marginBottom="20dp"
android:layout_marginTop="5dp" />



<ImageButton
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:src="@drawable/lob"
android:background="@null"
android:scaleType="fitXY"
android:id="@+id/4"

android:layout_marginTop="5dp"
android:layout_marginRight="20dp"
android:layout_marginLeft="5dp"
android:layout_marginBottom="20dp" />
</LinearLayout>

</LinearLayout>
<com.google.android.gms.ads.AdView
android:id="@+id/beautyfragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/dancinggirl">
</com.google.android.gms.ads.AdView>
</RelativeLayout>

感谢您的观看。

最佳答案

将广告版式放在LinearLayout下面

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:ads="http://schemas.android.com/apk/res-auto"
tools:context="com.dancing.dance.girl"
android:background="@mipmap/vsdv">


<!-- TODO: Update blank fragment layout -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="2"
android:id="@+id/beauty_fragment"
android:orientation="vertical"
android:padding="10dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2" >

<ImageButton
android:layout_width="0dp"
android:layout_height="fill_parent"
android:id="@+id/1"
android:layout_weight="1"
android:src="@drawable/lob"
android:background="@null"
android:scaleType="fitXY"


android:layout_marginLeft="20dp"
android:layout_marginRight="5dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="5dp" />
<ImageButton
android:layout_width="0dp"
android:layout_height="fill_parent"
android:id="@+id/2"
android:layout_weight="1"
android:src="@drawable/lob"
android:background="@null"
android:scaleType="fitXY"


android:layout_marginTop="20dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="5dp" />




</LinearLayout>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal"
android:weightSum="2" >

<ImageButton
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:src="@drawable/lob"
android:background="@null"
android:scaleType="fitXY"
android:id="@+id/3"

android:layout_marginLeft="20dp"
android:layout_marginRight="5dp"
android:layout_marginBottom="20dp"
android:layout_marginTop="5dp" />



<ImageButton
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:src="@drawable/lob"
android:background="@null"
android:scaleType="fitXY"
android:id="@+id/4"

android:layout_marginTop="5dp"
android:layout_marginRight="20dp"
android:layout_marginLeft="5dp"
android:layout_marginBottom="20dp" />
</LinearLayout>

</LinearLayout>
<com.google.android.gms.ads.AdView
android:id="@+id/beautyfragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/dancinggirl">
</com.google.android.gms.ads.AdView>


<com.google.android.gms.ads.AdView
android:id="@+id/abovebeauty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentTop="true"
ads:adSize="BANNER"
ads:adUnitId="@string/dancinggirl">
</com.google.android.gms.ads.AdView>

关于android - 在 android 中的布局顶部放置广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40781402/

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