Hello I'm new to Admob I have successfully added admob into my Main activity XML via below code provided by google, but the thing is my ad only contains on Main activity.. so i planned to paste same code into other activities as well.. is that right method ? or there is another way to do that only with XML not Java..
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
Thanks