What i am trying to achieve is hide my Ad view if it is not loaded due to internet or no ad from server.
MainActivity.java
NativeExpressAdView nativeView =
(NativeExpressAdView) findViewById(R.id.natvie_ad);
nativeView.loadAd(new AdRequest.Builder().addTestDevice("testDeviceID").build());
Layout
<com.google.android.gms.ads.NativeExpressAdView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/moreView"
android:id="@+id/natvie_ad"
ads:adSize="300x80"
ads:adUnitId="adUnitID"
android:layout_centerHorizontal="true"
/>