当前位置: 首页>>代码示例>>Java>>正文


Java MobileAds类代码示例

本文整理汇总了Java中com.google.android.gms.ads.MobileAds的典型用法代码示例。如果您正苦于以下问题:Java MobileAds类的具体用法?Java MobileAds怎么用?Java MobileAds使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


MobileAds类属于com.google.android.gms.ads包,在下文中一共展示了MobileAds类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        MobileAds.initialize(getApplicationContext(), "YOUR UNIT ID");

        AdView adView = (AdView) this.findViewById(R.id.adMob);
        //request TEST ads to avoid being disabled for clicking your own ads
        AdRequest adRequest = new AdRequest.Builder()
                .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)// This is for emulators
                //test mode on DEVICE (this example code must be replaced with your device uniquq ID)
//                .addTestDevice("2EAB96D84FE62876379A9C030AA6A0AC") // Nexus 5
                .build();
        adView.loadAd(adRequest);
    }
 
开发者ID:CatalinPrata,项目名称:funcodetuts,代码行数:17,代码来源:MainActivity.java

示例2: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Initialize the Mobile Ads SDK.
    MobileAds.initialize(this, getString(R.string.admob_app_id));

    if (savedInstanceState == null) {
        // Create new fragment to display a progress spinner while the data set for the
        // RecyclerView is populated.
        Fragment loadingScreenFragment = new LoadingScreenFragment();
        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
        transaction.add(R.id.fragment_container, loadingScreenFragment);

        // Commit the transaction.
        transaction.commit();

        // Update the RecyclerView item's list with menu items.
        addMenuItemsFromJson();
        // Update the RecyclerView item's list with native ads.
        loadNativeAd();
    }
}
 
开发者ID:googlecodelabs,项目名称:admob-native-advanced-feed,代码行数:25,代码来源:MainActivity.java

示例3: doInBackground

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
protected Boolean doInBackground(Void... voids) {
    FirebaseApp.initializeApp(mContext);
    MobileAds.initialize(mContext.getApplicationContext(), mContext.getResources().getString(R.string.app_id));
    FirebaseAnalytics.getInstance(mContext).setAnalyticsCollectionEnabled(true);
    FirebaseAnalytics.getInstance(mContext).setMinimumSessionDuration(2000);
    //dc.getGenres(null, null);

    AppVersionTracking current = new AppVersionTracking(BuildConfig.VERSION_CODE, BuildConfig.VERSION_NAME);

    if(!getAppPrefs().checkState()){
        getAppPrefs().saveOrUpdateVersionNumber(current);
        return false;
    }
    AppVersionTracking saved = getAppPrefs().getSavedVersions();
    if((BuildConfig.VERSION_CODE > saved.getCode())) {
        getAppPrefs().saveOrUpdateVersionNumber(current);
        return true;
    }
    return null;
}
 
开发者ID:wax911,项目名称:anitrend-app,代码行数:22,代码来源:MainPresenter.java

示例4: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    MobileAds.initialize(getApplicationContext(), getString(R.string.banner_ad_app_id));
    initializeAd();

    plSwitch = (PulsatorLayout) findViewById(R.id.pl_switch);
    findViewById(R.id.ib_switch).setOnClickListener(this);
    findViewById(R.id.iv_question).setOnClickListener(this);

    serviceRunning = isClipboardServiceRunning(ClipboardService.class);
    if (serviceRunning) {
        plSwitch.start();
    }
}
 
开发者ID:vshkl,项目名称:SaveIg,代码行数:18,代码来源:MainActivity.java

示例5: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Initialize the Mobile Ads SDK.
    MobileAds.initialize(this, APP_ID);

    AndroidApplicationConfiguration cfg = new AndroidApplicationConfiguration();
    cfg.useGyroscope = false;
    cfg.useCompass = true;
    cfg.useAccelerometer = true;

    // Do the stuff that initialize() would do for you
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);

    RelativeLayout layout = new RelativeLayout(this);
    RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
            RelativeLayout.LayoutParams.MATCH_PARENT,
            RelativeLayout.LayoutParams.MATCH_PARENT);
    layout.setLayoutParams(params);

    AdView admobView = createAdView();
    layout.addView(admobView);
    View gameView = createGameView(cfg);
    layout.addView(gameView);

    setContentView(layout);
    startAdvertising(admobView);
}
 
开发者ID:tgobbens,项目名称:fluffybalance,代码行数:32,代码来源:AndroidLauncher.java

示例6: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mUserLocation = WeatherUtil.getPreferredLocation(this);
    if (findViewById(R.id.weather_detail_container) != null) {
        mIsTwoPane = true;
        if (savedInstanceState == null) {
            getSupportFragmentManager().beginTransaction()
                    .replace(R.id.weather_detail_container, new DetailFragment(), DETAILFRAGMENT_TAG)
                    .commit();
        }
    } else {
        mIsTwoPane = false;
        getSupportActionBar().setElevation(8f);
    }
    WeatherForecastFragment forecastFragment = ((WeatherForecastFragment) getSupportFragmentManager()
            .findFragmentById(R.id.fragment_weather_forecast));
    forecastFragment.setUseTodayLayout(!mIsTwoPane);
    getSupportActionBar().setDisplayShowHomeEnabled(true);
    getSupportActionBar().setLogo(R.mipmap.ic_launcher);
    getSupportActionBar().setDisplayUseLogoEnabled(true);
    setTitle();
    Weather4USyncAdapter.initializeSyncAdapter(this);
    MobileAds.initialize(getApplicationContext(), getString(R.string.ad_mob_application_id));
}
 
开发者ID:katamaditya,项目名称:Weather4U,代码行数:27,代码来源:MainActivity.java

示例7: initADs

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
void initADs() {

		if(enableADs) {
			//https://firebase.google.com/docs/admob/android/quick-start
			MobileAds.initialize(getApplicationContext(), getString(R.string.ad_app_id));
			AdView mAdView = (AdView) findViewById(R.id.adView);
			AdRequest adRequest = new AdRequest.Builder().build();
			mAdView.loadAd(adRequest);
			Log.d(LOG_TAG, "Ads initialized..");

			mInterstitialAd = new InterstitialAd(this);
			mInterstitialAd.setAdUnitId(getString(R.string.interstitial_ad_unit_id));
			mInterstitialAd.setAdListener(new AdListener() {
				@Override
				public void onAdClosed() {
					//requestNewInterstitial();
				}
			});

			requestNewInterstitial();
		}
	}
 
开发者ID:GokulNC,项目名称:USB_Mass_Storage_Enabler,代码行数:23,代码来源:MainActivity.java

示例8: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setTransition();
    setContentView(R.layout.activity_login);
    // initialize Admob
    MobileAds.initialize(this, AD_UNIT_ID);
    mAuth = getInstance();
    
    boolean flag = SPUtils.getBoolean(this, Constants.USER_CONFIG, Constants.USER_CONFIG_AUTO_LOGIN, false);
    if (!flag) {
        signIn();
    }
    
    startAdFragment();
}
 
开发者ID:Art2Cat,项目名称:MoonlightNote,代码行数:17,代码来源:LoginActivity.java

示例9: onCreateView

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view = inflater.inflate(R.layout.fragment_slash, container, false);
        // initialize Admob
        MobileAds.initialize(mActivity, APP_ID);
        NativeExpressAdView adView = view.findViewById(R.id.adView);
        AdRequest request = new AdRequest.Builder()
//                .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
//                .addTestDevice("0ACA1878D607E6C4360F91E0A0379C2F")
//                .addTestDevice("4DA2263EDB49C1F2C00F9D130B823096")
                .build();
        adView.loadAd(request);
        if (!adView.isLoading()) {
            adView.setVisibility(View.GONE);
        }
        return view;
    }
 
开发者ID:Art2Cat,项目名称:MoonlightNote,代码行数:20,代码来源:SlashFragment.java

示例10: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
public void onCreate() {
  super.onCreate();
  Fabric.with(this, new Crashlytics());
  FlowManager.init(this);
  MobileAds.initialize(this, "ca-app-pub-9985743520520066~4279780475");

  sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);

  String userAgent =
      String.format(Locale.UK, "%s.%d", BuildConfig.APPLICATION_ID, BuildConfig.VERSION_CODE);
  String sessionKeyKey = getString(R.string.saved_session_key);
  LastfmApi api = new LastfmApi();
  Caller caller = Caller.getInstance();

  if (sharedPreferences.contains(sessionKeyKey)) {
    String sessionKey = sharedPreferences.getString(sessionKeyKey, null);
    lastfmClient = new LastfmClient(api, caller, userAgent, sessionKey);
  } else {
    lastfmClient = new LastfmClient(api, caller, userAgent);
  }

  scroballDB = new ScroballDB();
  eventBus.register(this);
}
 
开发者ID:peterjosling,项目名称:scroball,代码行数:26,代码来源:ScroballApplication.java

示例11: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Initialize the Mobile Ads SDK.
    MobileAds.initialize(this, ADMOB_APP_ID);

    mRefresh = findViewById(R.id.btn_refresh);
    mRequestAppInstallAds = findViewById(R.id.cb_appinstall);
    mRequestContentAds = findViewById(R.id.cb_content);
    mStartVideoAdsMuted = findViewById(R.id.cb_start_muted);
    mVideoStatus = findViewById(R.id.tv_video_status);

    mRefresh.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            refreshAd(mRequestAppInstallAds.isChecked(),
                    mRequestContentAds.isChecked());
        }
    });

    refreshAd(mRequestAppInstallAds.isChecked(),
            mRequestContentAds.isChecked());
}
 
开发者ID:googlesamples,项目名称:android-ads,代码行数:26,代码来源:MainActivity.java

示例12: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_my);

    // Initialize the Mobile Ads SDK.
    MobileAds.initialize(this, "ca-app-pub-3940256099942544~3347511713");

    // Gets the ad view defined in layout/ad_fragment.xml with ad unit ID set in
    // values/strings.xml.
    mAdView = findViewById(R.id.ad_view);

    // Create an ad request. Check your logcat output for the hashed device ID to
    // get test ads on a physical device. e.g.
    // "Use AdRequest.Builder.addTestDevice("ABCDEF012345") to get test ads on this device."
    AdRequest adRequest = new AdRequest.Builder()
            .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
            .build();

    // Start loading the ad in the background.
    mAdView.loadAd(adRequest);
}
 
开发者ID:googlesamples,项目名称:android-ads,代码行数:23,代码来源:MyActivity.java

示例13: loadRewardedVideoAd

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
public void loadRewardedVideoAd() {
	if (rewardedVideo == null) {
		//rewardedVideo = new RewardedVideoAd(plugin.getCordova().getActivity());
		rewardedVideo = MobileAds.getRewardedVideoAdInstance(plugin.getCordova().getActivity());
		//
		//rewardedVideo.setAdUnitId(this.rewardedVideoAdUnit);
		rewardedVideo.setRewardedVideoAdListener(new MyRewardedVideoListener());	
	}		
	
	AdRequest.Builder builder = new AdRequest.Builder();
	if(isTest) {
		builder.addTestDevice(AdRequest.DEVICE_ID_EMULATOR); 
		//builder.addTestDevice("INSERT_YOUR_HASHED_DEVICE_ID_HERE");				
		String ANDROID_ID = Settings.Secure.getString(plugin.getCordova().getActivity().getContentResolver(), android.provider.Settings.Secure.ANDROID_ID);
		String deviceId = Util.md5(ANDROID_ID).toUpperCase();
		builder.addTestDevice(deviceId);		
	}
	AdRequest request = builder.build();			
	rewardedVideo.loadAd(this.rewardedVideoAdUnit, request);		
}
 
开发者ID:cranberrygame,项目名称:cordova-plugin-ad-admob,代码行数:21,代码来源:AdMobOverlap.java

示例14: onCreate

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    MobileAds.initialize(this, "ca-app-pub-3067141613739864~9851773284");

    ((FitbuddyApplication) getApplication()).getComponent().inject(this);

    Fragment workoutListFragment = new WorkoutListFragment();
    getSupportFragmentManager().beginTransaction()
            .add(R.id.fragment_content, workoutListFragment)
            .setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE)
            .commit();

    bottomNavigation = findViewById(R.id.bottom_navigation);
    bottomNavigation.setOnNavigationItemSelectedListener(this);
}
 
开发者ID:avalax,项目名称:FitBuddy,代码行数:18,代码来源:MainActivity.java

示例15: initAds

import com.google.android.gms.ads.MobileAds; //导入依赖的package包/类
private void initAds() {
    MobileAds.initialize(this, "ca-app-pub-2757743767659351~9555852028");
    //MobileAds.initialize(this, "ca-app-pub-3940256099942544~3347511713"); // Test


    bigAd = new InterstitialAd(this);
    bigAd.setAdUnitId("ca-app-pub-2757743767659351/2179020563");
    bigAd.loadAd(new AdRequest.Builder().build());

    adTop = findViewById(R.id.adViewTop);
    adBottom = findViewById(R.id.adViewBottom);
    adBottom.loadAd(new AdRequest.Builder().build());
    adTop.loadAd(new AdRequest.Builder().build());
}
 
开发者ID:pontusstjerna,项目名称:SnakeWear,代码行数:15,代码来源:MainActivity.java


注:本文中的com.google.android.gms.ads.MobileAds类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。