我正在尝试将广告(admob)整合到我的Android应用中。它主要是工作,除了布局的一个问题。我的布局包括:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:app="http://schemas.android.com/apk/res/com.example.photos">
<LinearLayout android:orientation="horizontal"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/status_layout">
<ImageView android:id="@+id/cardStatus"
android:layout_width="wrap_content" android:layout_height="wrap_content" />
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/hello"
android:id="@+id/cardStatusText" />
</LinearLayout>
<GridView android:id="@+id/imageGridView"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:padding="10dp" android:verticalSpacing="10dp"
android:horizontalSpacing="10dp" android:numColumns="auto_fit"
android:columnWidth="100dp" android:stretchMode="columnWidth"
android:gravity="center" android:layout_below="@id/status_layout" />
<!-- Place an AdMob ad at the bottom of the screen. -->
<!-- It has white text on a black background. -->
<!-- The description of the surrounding context is 'Android game'. -->
<com.admob.android.ads.AdView android:id="@+id/ad"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_alignParentBottom="true" app:backgroundColor="#000000"
app:primaryTextColor="#FFFFFF" app:secondaryTextColor="#CCCCCC"
app:keywords="Android Photo" />
</RelativeLayout>
广告显示在屏幕底部,正如我想要的那样。但是,它们似乎被叠加或绘制在网格视图的底部之上。我希望gridview更短,以便广告可以填充屏幕的底部,而不是隐藏gridview的一部分。当您一直滚动到gridview底部时,问题最烦人,但由于广告,您仍然无法完全看到网格中的最后一行项目。
我不确定这是否是AdMob广告的标准使用方式。如果是这种情况,在网格底部添加一些填充(如果可能的话)就可以了。这样,用户可以进一步滚动,并查看除广告之外的最后一行。
在阅读ListViews的一些类似问题后,我刚刚使用LinearLayout切换到RelativeLayout。现在我的广告位于底部而不是网格上方,所以我越来越近了。
思考? -Kevin
答案 0 :(得分:4)
将此属性放在gridview
中android:layout_above="@+id/ad"