Android的Admob的广告在preferenceActivity广告、Android、Admob、preferenceActivity

2023-09-08 15:48:23 作者:校长!借个火

有没有办法向AdMob的广告添加到preferenceActivity?如何?

Is there a way to add an admob advert to a PreferenceActivity? How to?

推荐答案

什么,你也可以做的是建立一个可以很容易地添加到任何preferences屏幕自定义preference。

What you can also do is to create a custom Preference that can be easily added to any preferences screen.

添加一个名为ad_layout.xml布局文件,稍后将被AdMob的填写您的RES /布局文件夹。

Add a layout file called ad_layout.xml to your res/layout folder that will be filled later by AdMob.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" android:orientation="vertical">  
</LinearLayout>

创建了一个名为广告preference这样的:

Create a class called AdPreference like that:

package com.example.adpreference;

import com.google.ads.AdRequest;
import com.google.ads.AdSize;
import com.google.ads.AdView;

import android.app.Activity;
import android.content.Context;
import android.preference.Preference;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;

public class AdPreference extends Preference {

    public AdPreference(Context context, AttributeSet attrs, int defStyle) {super    (context, attrs, defStyle);}
    public AdPreference(Context context, AttributeSet attrs) {super(context, attrs);}
    public AdPreference(Context context) {super(context);}

    @Override
    protected View onCreateView(ViewGroup parent) {
        // this will create the linear layout defined in ads_layout.xml
        View view = super.onCreateView(parent);

        // the context is a PreferenceActivity
        Activity activity = (Activity)getContext();

        // Create the adView
        AdView adView = new AdView(activity, AdSize.BANNER, "<your add id>");

        ((LinearLayout)view).addView(adView);

        // Initiate a generic request to load it with an ad
        AdRequest request = new AdRequest();
        adView.loadAd(request);     

        return view;    
    }
}

现在在preference XML文件,你可以添加添加你喜欢的任何位置(任何其他preferences的顶部或)。

Now in the preference xml file you can just add add any position you like (at the top or in between any other preferences ).

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    ...

    <com.example.adpreference.AdPreference android:layout="@layout/ad_layout"/>

    ...
</PreferenceScreen>