我第一次开发一个Android应用程序,到目前为止它除了一件事情之外还很顺利。我做了一个webview布局,我想在应用程序中显示广告。所以我添加了AdMob广告,他们的工作非常好。但是有一个问题。
AdMob涵盖了WebView的一部分,因此它不会改变WebView布局,而是覆盖它。这很烦人,因为你无法阅读webview文本的一部分。我该如何解决?
这是我的main.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent" android:id="@+id/rltvLayout01"
android:layout_height="fill_parent" android:background="@color/white">
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<WebView android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:scrollbars="none" />
</ScrollView>
<LinearLayout android:id="@+id/ad_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="bottom"
android:layout_alignParentBottom="true">
<com.google.ads.AdView android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="helloworldcode"
ads:loadAdOnCreate="true"
ads:adSize="BANNER" />
</LinearLayout>
</RelativeLayout>
我试图给ScrollView一个android:layout_above="@+id/ad_layout"
,然后我的app力关闭...所以我真的希望有人可以帮助我,因为我现在正在寻找它几个小时:(
答案 0 :(得分:3)
似乎layout_above
应该有效,但如果这确实是您的完整布局,我认为最简单的方法是将RelativeLayout
替换为LinearLayout
,因为您只是无论如何将这些视图排成一行,然后给主要部分一个权重。我可能也会摆脱ScrollView
并让WebView
滚动本身,但是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent" android:id="@+id/rltvLayout01"
android:layout_height="fill_parent" android:background="@color/white"
android:orientation="vertical">
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1">
<WebView android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:scrollbars="none" />
</ScrollView>
<com.google.ads.AdView android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="helloworldcode"
ads:loadAdOnCreate="true"
ads:adSize="BANNER" />
</LinearLayout>