Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <com.google.android.gms.ads.AdView
  2. android:id="@+id/loadingAdView"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:layout_gravity="center_horizontal"
  6. ads:adSize="MEDIUM_RECTANGLE"
  7. ads:adUnitId="@string/loading_banner_ad_unit_id"
  8. android:layout_marginTop="10dp"
  9. android:layout_marginBottom="10dp"/>
  10.  
  11. AdRequest.Builder adRequestBuilder = new AdRequest.Builder();
  12. AdRequest adRequest =adRequestBuilder.setRequestAgent("android_studio:ad_template").build();
  13. loadingAdView.loadAd(adRequest);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement