我有一个布局,其中有一个网格视图,我想在屏幕底部显示横幅广告 我有以下代码
getMask()
在4英寸移动设备上效果很好,但在较大的设备上,横幅广告与网格内容重叠。如何使它在所有设备上通用,以免与应用内容重叠
答案 0 :(得分:1)
尝试以下布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:weightSum="1"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#29000000"
android:orientation="vertical"
android:fitsSystemWindows="true">
<include layout="@layout/detail_activity_bar"></include>
<GridView
android:layout_weight="0.9"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/home_grid"
android:layout_width="match_parent"
android:layout_height="0dp"
android:horizontalSpacing="5dp"
android:verticalSpacing="5dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="5dp"
android:numColumns="2"
android:stretchMode="columnWidth"/>
<com.google.android.gms.ads.AdView
android:layout_weight="0.1"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adViewGallery"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="5dp"
android:layout_gravity="bottom|center"
ads:adSize="SMART_BANNER"
ads:adUnitId="@string/home_banner">
</com.google.android.gms.ads.AdView>
</LinearLayout>
答案 1 :(得分:0)
只需使用LinearLayout或使用RelativeLayout而不是FrameLayout,它在所有设备上都是正确的! :)