我想为我的应用提供一些帮助 我正在使用webview(在一个xml文件中只有一个单一的webview)并在其中使用本地html页面 我使用以下java代码
放置了admob横幅广告 private AdView adView;
adView = new AdView(this, AdSize.BANNER, "my publisher id");
WebView layout = (WebView) findViewById(R.id.webView1);
layout.addView(adView);
adView.loadAd(new AdRequest());
我的问题是,在启动应用时,广告会显示在我的应用上方,因此会在我的网页上隐藏一些内容,当用户向下滚动时,他无法看到该广告。 如何才能让广告在底部显示,以便用户始终可以看到它?
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
我已经将这个webview设置为我的活动
setContentView(R.layout.webview);
答案 0 :(得分:5)
因为WebView是AbsoluteLayout,所以您可以像这样定位其子视图:
AbsoluteLayout.LayoutParams params = AbsoluteLayout.LayoutParams(width,height,X-position,Y-position);
adView.setLayoutParams(params);
但是,将WebView放在LinearLayout中会更容易,因此当您添加广告时,它会自动显示在底部。例如:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<WebView
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
您的代码必须更改为如下所示:
private AdView adView;
adView = new AdView(this, AdSize.BANNER, "my publisher id");
LinearLayout root = (LinearLayout)findViewById(R.id.main);
root.addView(adView);
adView.loadAd(new AdRequest());
另一种选择是在xml中加入广告。您可以在AdMob https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals#android developer guide中了解如何执行此操作。摘自网站:
<?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:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- WebView goes here -->
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="MY_AD_UNIT_ID"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
ads:loadAdOnCreate="true"/>
</LinearLayout>
答案 1 :(得分:2)
以下是最近支持页面底部的webview和横幅广告的布局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/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="false"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id"></com.google.android.gms.ads.AdView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/adView"
android:layout_alignParentTop="true"
android:orientation="vertical">
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
</RelativeLayout>
适当更改@string/banner_ad_unit_id
。
webView1
是网络视图的ID。
如果您的布局引发AdView未找到异常,请确保添加play-services-ads
依赖项。您可以在应用的build.gradle
文件中添加/更新它,如下所示:
dependencies {
compile 'com.google.android.gms:play-services-ads:7.8.0'
}
这是我发起广告请求的方式:
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);