today:
98
yesterday:
135
Total:
999,086

Load an ad

admin 2017.07.21 02:01 Views : 1000

Once the AdView is in place, the next step is to load an ad. That's done with the loadAd() method in the AdViewclass. It takes an AdRequest parameter, which holds runtime information (such as targeting info) about a single ad request.

Here's an example that shows how to load an ad in the onCreate() method of an Activity:

MainActivity.java (excerpt)

package ...

import ...
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;


public class MainActivity extends AppCompatActivity {
   
private AdView mAdView;

   
protected void onCreate(Bundle savedInstanceState) {
       
super.onCreate(savedInstanceState);
        setContentView
(R.layout.activity_main);

       
MobileAds.initialize(getApplicationContext(),
           
"ca-app-pub-3940256099942544~3347511713");

       
mAdView = (AdView) findViewById(R.id.adView);
       
AdRequest adRequest = new AdRequest.Builder().build();
        mAdView
.loadAd(adRequest);

   
}
   
...
}

That's it! Your app is now ready to display banner ads.

No. Subject Author Date Views
8 US1800s admin 2017.07.03 213
7 Image Center admin 2017.07.21 222
6 AdMob - Import the Mobile Ads SDK admin 2017.07.21 195
5 Import the Mobile Ads SDK admin 2017.07.21 1050
4 Add AdView to the layout admin 2017.07.21 1576
» Load an ad admin 2017.07.21 1000
2 Android Application Development admin 2017.07.28 874
1 Website icon admin 2017.09.16 927