if( user.isPaid() ){ // Load the AdView with the Ad Unit ID for Paid Users unpaidAdView.loadAd(adRequest); // OR Set the Ad Unit ID for the AdView for Paid Users adView.setAdUnitId(getString(R.string.ad_unit_unpaid)); } else { // Load the AdView with the Ad Unit ID for Unpaid Users paidAdView.loadAd(adRequest); // OR Set the Ad Unit ID for the AdView for Unpaid Users adView.setAdUnitId(getString(R.string.ad_unit_paid)); }