我有一个问题,如果我使用这个代码我不能看到谷歌AdView我不知道它在哪里:(无论我做什么它没有显示但第一页的横幅工作良好,但这在第二不是:(可以任何建议我
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/graph"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
ads:adSize="BANNER"
ads:adUnitId="@string/ad_unit_id" />
<com.calculator.grap.GraphPanel
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:src="@drawable/ic_launcher" />
</LinearLayout>
答案 0 :(得分:1)
由于它是垂直布局,因此它显示在顶部。此外,您不应该对AdView的宽度和高度使用match_parent。 如果使用layout_weight,则应将height用作0dp。
将GraphPanel的高度更改为0dp。
还要以更好的方式重新解释您的问题。